diff options
author | UbitUmarov | 2017-11-12 12:11:29 +0000 |
---|---|---|
committer | UbitUmarov | 2017-11-12 12:11:29 +0000 |
commit | 17c65d918a978b6908131a1cae7ccaddeb70d9c5 (patch) | |
tree | 939e0406f9dd6373ff03f897be3257122a5a2dae /OpenSim/Data | |
parent | Merge branch 'master' into httptests (diff) | |
parent | mantis 8253: don't let attachments delete remove controls from viewers on cro... (diff) | |
download | opensim-SC-17c65d918a978b6908131a1cae7ccaddeb70d9c5.zip opensim-SC-17c65d918a978b6908131a1cae7ccaddeb70d9c5.tar.gz opensim-SC-17c65d918a978b6908131a1cae7ccaddeb70d9c5.tar.bz2 opensim-SC-17c65d918a978b6908131a1cae7ccaddeb70d9c5.tar.xz |
Merge branch 'master' into httptests
Diffstat (limited to 'OpenSim/Data')
-rw-r--r-- | OpenSim/Data/PGSQL/Resources/EstateStore.migrations | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/OpenSim/Data/PGSQL/Resources/EstateStore.migrations b/OpenSim/Data/PGSQL/Resources/EstateStore.migrations index 63b70bd..5b450aa 100644 --- a/OpenSim/Data/PGSQL/Resources/EstateStore.migrations +++ b/OpenSim/Data/PGSQL/Resources/EstateStore.migrations | |||
@@ -110,3 +110,18 @@ CREATE INDEX IF NOT EXISTS "ix_estateban" ON "public"."estateban" USING btree(" | |||
110 | 110 | ||
111 | COMMIT; | 111 | COMMIT; |
112 | 112 | ||
113 | :VERSION 13 | ||
114 | |||
115 | BEGIN TRASACTION; | ||
116 | |||
117 | -- ---------------------------- | ||
118 | -- SEQUENCE estate_settings_id | ||
119 | -- ---------------------------- | ||
120 | CREATE SEQUENCE IF NOT EXISTS "public"."estate_settings_id" | ||
121 | INCREMENT 100 | ||
122 | MINVALUE 1 | ||
123 | MAXVALUE 9223372036854775807 | ||
124 | START 100 | ||
125 | CACHE 1; | ||
126 | |||
127 | COMMIT; | ||