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;