From 8c5a2e1e703c534bc000f1ce365c19d33677014a Mon Sep 17 00:00:00 2001 From: Kevin Cozens Date: Tue, 15 Sep 2015 21:50:55 -0400 Subject: Added migration for UserAccounts table. --- OpenSim/Data/MySQL/Resources/UserAccount.migrations | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'OpenSim/Data/MySQL') diff --git a/OpenSim/Data/MySQL/Resources/UserAccount.migrations b/OpenSim/Data/MySQL/Resources/UserAccount.migrations index 84011e6..71f1cc4 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; -- cgit v1.1