diff options
author | Melanie Thielker | 2016-03-22 20:55:21 +0100 |
---|---|---|
committer | Melanie Thielker | 2016-03-22 20:55:21 +0100 |
commit | 482daacea7459081075931ffab6324675e07cbe0 (patch) | |
tree | 13605fa418003a3db9e5a6bed0f67e6d036dcc34 /OpenSim | |
parent | Change casing on UserAccounts (diff) | |
download | opensim-SC-482daacea7459081075931ffab6324675e07cbe0.zip opensim-SC-482daacea7459081075931ffab6324675e07cbe0.tar.gz opensim-SC-482daacea7459081075931ffab6324675e07cbe0.tar.bz2 opensim-SC-482daacea7459081075931ffab6324675e07cbe0.tar.xz |
Add migration to add "active" column on PGSQL. UNTESTED!
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Data/PGSQL/Resources/UserAccount.migrations | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Data/PGSQL/Resources/UserAccount.migrations b/OpenSim/Data/PGSQL/Resources/UserAccount.migrations index c785463..31358fa 100644 --- a/OpenSim/Data/PGSQL/Resources/UserAccount.migrations +++ b/OpenSim/Data/PGSQL/Resources/UserAccount.migrations | |||
@@ -48,4 +48,10 @@ ALTER TABLE UserAccounts ADD "UserTitle" varchar(64) NOT NULL DEFAULT ''; | |||
48 | 48 | ||
49 | COMMIT; | 49 | COMMIT; |
50 | 50 | ||
51 | :VERSION 5 | ||
51 | 52 | ||
53 | BEGIN TRANSACTION; | ||
54 | |||
55 | ALTER TABLE UserAccounts ADD "active" integer NOT NULL DEFAULT 1; | ||
56 | |||
57 | COMMIT; | ||