aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data
diff options
context:
space:
mode:
authorUbitUmarov2017-11-12 12:11:29 +0000
committerUbitUmarov2017-11-12 12:11:29 +0000
commit17c65d918a978b6908131a1cae7ccaddeb70d9c5 (patch)
tree939e0406f9dd6373ff03f897be3257122a5a2dae /OpenSim/Data
parentMerge branch 'master' into httptests (diff)
parentmantis 8253: don't let attachments delete remove controls from viewers on cro... (diff)
downloadopensim-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.migrations15
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
111COMMIT; 111COMMIT;
112 112
113:VERSION 13
114
115 BEGIN TRASACTION;
116
117-- ----------------------------
118-- SEQUENCE estate_settings_id
119-- ----------------------------
120CREATE SEQUENCE IF NOT EXISTS "public"."estate_settings_id"
121 INCREMENT 100
122 MINVALUE 1
123 MAXVALUE 9223372036854775807
124 START 100
125 CACHE 1;
126
127COMMIT;