aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data
diff options
context:
space:
mode:
authorMelanie Thielker2016-03-22 20:55:21 +0100
committerMelanie Thielker2016-03-22 20:55:21 +0100
commit482daacea7459081075931ffab6324675e07cbe0 (patch)
tree13605fa418003a3db9e5a6bed0f67e6d036dcc34 /OpenSim/Data
parentChange casing on UserAccounts (diff)
downloadopensim-SC_OLD-482daacea7459081075931ffab6324675e07cbe0.zip
opensim-SC_OLD-482daacea7459081075931ffab6324675e07cbe0.tar.gz
opensim-SC_OLD-482daacea7459081075931ffab6324675e07cbe0.tar.bz2
opensim-SC_OLD-482daacea7459081075931ffab6324675e07cbe0.tar.xz
Add migration to add "active" column on PGSQL. UNTESTED!
Diffstat (limited to 'OpenSim/Data')
-rw-r--r--OpenSim/Data/PGSQL/Resources/UserAccount.migrations6
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
49COMMIT; 49COMMIT;
50 50
51:VERSION 5
51 52
53BEGIN TRANSACTION;
54
55ALTER TABLE UserAccounts ADD "active" integer NOT NULL DEFAULT 1;
56
57COMMIT;