aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data
diff options
context:
space:
mode:
authorKevin Cozens2015-09-15 21:50:55 -0400
committerKevin Cozens2015-09-15 21:52:12 -0400
commit8c5a2e1e703c534bc000f1ce365c19d33677014a (patch)
tree84e1592bcc6b7055e5617e74c495f6b5691601f9 /OpenSim/Data
parentrestore some avn code, fixing for var regions (diff)
downloadopensim-SC_OLD-8c5a2e1e703c534bc000f1ce365c19d33677014a.zip
opensim-SC_OLD-8c5a2e1e703c534bc000f1ce365c19d33677014a.tar.gz
opensim-SC_OLD-8c5a2e1e703c534bc000f1ce365c19d33677014a.tar.bz2
opensim-SC_OLD-8c5a2e1e703c534bc000f1ce365c19d33677014a.tar.xz
Added migration for UserAccounts table.
Diffstat (limited to 'OpenSim/Data')
-rw-r--r--OpenSim/Data/MySQL/Resources/UserAccount.migrations7
1 files changed, 7 insertions, 0 deletions
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 '';
44 44
45COMMIT; 45COMMIT;
46 46
47:VERSION 5 # -------------------------
48
49BEGIN;
50
51ALTER TABLE `UserAccounts` ADD `active` INT NOT NULL DEFAULT '1';
52
53COMMIT;
47 54