From 8c5a2e1e703c534bc000f1ce365c19d33677014a Mon Sep 17 00:00:00 2001 From: Kevin Cozens Date: Tue, 15 Sep 2015 21:50:55 -0400 Subject: [PATCH] Added migration for UserAccounts table. --- OpenSim/Data/MySQL/Resources/UserAccount.migrations | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/OpenSim/Data/MySQL/Resources/UserAccount.migrations b/OpenSim/Data/MySQL/Resources/UserAccount.migrations index 84011e6e49..71f1cc4714 100644 --- a/OpenSim/Data/MySQL/Resources/UserAccount.migrations +++ b/OpenSim/Data/MySQL/Resources/UserAccount.migrations @@ -44,4 +44,11 @@ ALTER TABLE UserAccounts ADD COLUMN UserTitle varchar(64) NOT NULL DEFAULT ''; COMMIT; +:VERSION 5 # ------------------------- + +BEGIN; + +ALTER TABLE `UserAccounts` ADD `active` INT NOT NULL DEFAULT '1'; + +COMMIT;