From ded776c86b0dfda69566bdf645a94745aa91744f Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sun, 21 Feb 2016 07:08:55 -0800 Subject: [PATCH] MySQL migrations: fix one last migration that had been left behind --- 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 b634343557..703238ce6a 100644 --- a/OpenSim/Data/MySQL/Resources/UserAccount.migrations +++ b/OpenSim/Data/MySQL/Resources/UserAccount.migrations @@ -22,3 +22,10 @@ CREATE TABLE IF NOT EXISTS `useraccounts` ( COMMIT; +:VERSION 6 # ------------------------- + +BEGIN; + +ALTER TABLE `UserAccounts` ADD `active` INT NOT NULL DEFAULT '1'; + +COMMIT;