diff options
author | UbitUmarov | 2019-08-18 20:24:19 +0100 |
---|---|---|
committer | UbitUmarov | 2019-08-18 20:24:19 +0100 |
commit | d5db4b9d939ff7e1f75366428a903198847fdf9e (patch) | |
tree | cd795b49a8c359e9b7d38d434c49b65cbc5a74c4 /OpenSim/Data/PGSQL/Resources | |
parent | oops... (diff) | |
download | opensim-SC-d5db4b9d939ff7e1f75366428a903198847fdf9e.zip opensim-SC-d5db4b9d939ff7e1f75366428a903198847fdf9e.tar.gz opensim-SC-d5db4b9d939ff7e1f75366428a903198847fdf9e.tar.bz2 opensim-SC-d5db4b9d939ff7e1f75366428a903198847fdf9e.tar.xz |
try to update PGSQL estateban
Diffstat (limited to 'OpenSim/Data/PGSQL/Resources')
-rw-r--r-- | OpenSim/Data/PGSQL/Resources/EstateStore.migrations | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Data/PGSQL/Resources/EstateStore.migrations b/OpenSim/Data/PGSQL/Resources/EstateStore.migrations index 5b450aa..d0ca5c0 100644 --- a/OpenSim/Data/PGSQL/Resources/EstateStore.migrations +++ b/OpenSim/Data/PGSQL/Resources/EstateStore.migrations | |||
@@ -125,3 +125,11 @@ CREATE SEQUENCE IF NOT EXISTS "public"."estate_settings_id" | |||
125 | CACHE 1; | 125 | CACHE 1; |
126 | 126 | ||
127 | COMMIT; | 127 | COMMIT; |
128 | |||
129 | :VERSION 14 | ||
130 | BEGIN TRANSACTION; | ||
131 | |||
132 | ALTER TABLE `estateban` | ||
133 | ADD COLUMN `banningUUID` uuid NOT NULL, | ||
134 | ADD COLUMN `banTime` int NOT NULL DEFAULT 0; | ||
135 | COMMIT; | ||