diff options
author | Diva Canto | 2016-02-21 07:08:55 -0800 |
---|---|---|
committer | Diva Canto | 2016-02-21 07:08:55 -0800 |
commit | ded776c86b0dfda69566bdf645a94745aa91744f (patch) | |
tree | 2ddf5c2a94fab9f5c4a74a60afb220e3f5f88f4c /OpenSim/Data/MySQL/Resources/UserAccount.migrations | |
parent | Flatten migrations for MySQL. (diff) | |
download | opensim-SC-ded776c86b0dfda69566bdf645a94745aa91744f.zip opensim-SC-ded776c86b0dfda69566bdf645a94745aa91744f.tar.gz opensim-SC-ded776c86b0dfda69566bdf645a94745aa91744f.tar.bz2 opensim-SC-ded776c86b0dfda69566bdf645a94745aa91744f.tar.xz |
MySQL migrations: fix one last migration that had been left behind
Diffstat (limited to '')
-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 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 | ||
23 | COMMIT; | 23 | COMMIT; |
24 | 24 | ||
25 | :VERSION 6 # ------------------------- | ||
26 | |||
27 | BEGIN; | ||
28 | |||
29 | ALTER TABLE `UserAccounts` ADD `active` INT NOT NULL DEFAULT '1'; | ||
30 | |||
31 | COMMIT; | ||