aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data
diff options
context:
space:
mode:
authorDiva Canto2016-02-21 07:08:55 -0800
committerDiva Canto2016-02-21 07:08:55 -0800
commitded776c86b0dfda69566bdf645a94745aa91744f (patch)
tree2ddf5c2a94fab9f5c4a74a60afb220e3f5f88f4c /OpenSim/Data
parentFlatten migrations for MySQL. (diff)
downloadopensim-SC_OLD-ded776c86b0dfda69566bdf645a94745aa91744f.zip
opensim-SC_OLD-ded776c86b0dfda69566bdf645a94745aa91744f.tar.gz
opensim-SC_OLD-ded776c86b0dfda69566bdf645a94745aa91744f.tar.bz2
opensim-SC_OLD-ded776c86b0dfda69566bdf645a94745aa91744f.tar.xz
MySQL migrations: fix one last migration that had been left behind
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 b634343..703238c 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` (
22 22
23COMMIT; 23COMMIT;
24 24
25:VERSION 6 # -------------------------
26
27BEGIN;
28
29ALTER TABLE `UserAccounts` ADD `active` INT NOT NULL DEFAULT '1';
30
31COMMIT;