From 28e35420eabeae1accb4234744ff8da03210baca 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 Conflicts: OpenSim/Data/MySQL/Resources/UserAccount.migrations --- OpenSim/Data/MySQL/Resources/UserAccount.migrations | 6 ++++++ 1 file changed, 6 insertions(+) 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;