diff options
Diffstat (limited to 'OpenSim/Data/PGSQL/Resources/UserAccount.migrations')
-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; | ||