diff --git a/OpenSim/Data/MySQL/Resources/UserAccount.migrations b/OpenSim/Data/MySQL/Resources/UserAccount.migrations index 2d4a6fa352..98be09712e 100644 --- a/OpenSim/Data/MySQL/Resources/UserAccount.migrations +++ b/OpenSim/Data/MySQL/Resources/UserAccount.migrations @@ -22,4 +22,10 @@ CREATE TABLE IF NOT EXISTS `UserAccounts` ( COMMIT; +:VERSION 6 # ------------------------- +BEGIN; + +ALTER TABLE `UserAccounts` ADD `active` INT NOT NULL DEFAULT '1'; + +COMMIT;