diff options
author | Kevin Cozens | 2015-09-15 21:50:55 -0400 |
---|---|---|
committer | Kevin Cozens | 2015-09-15 21:52:12 -0400 |
commit | 8c5a2e1e703c534bc000f1ce365c19d33677014a (patch) | |
tree | 84e1592bcc6b7055e5617e74c495f6b5691601f9 /OpenSim | |
parent | restore some avn code, fixing for var regions (diff) | |
download | opensim-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')
-rw-r--r-- | OpenSim/Data/MySQL/Resources/UserAccount.migrations | 7 |
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 | ||
45 | COMMIT; | 45 | COMMIT; |
46 | 46 | ||
47 | :VERSION 5 # ------------------------- | ||
48 | |||
49 | BEGIN; | ||
50 | |||
51 | ALTER TABLE `UserAccounts` ADD `active` INT NOT NULL DEFAULT '1'; | ||
52 | |||
53 | COMMIT; | ||
47 | 54 | ||