diff options
-rw-r--r-- | OpenSim/Data/PGSQL/Resources/EstateStore.migrations | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Data/PGSQL/Resources/EstateStore.migrations b/OpenSim/Data/PGSQL/Resources/EstateStore.migrations index 63b70bd..4dbc59f 100644 --- a/OpenSim/Data/PGSQL/Resources/EstateStore.migrations +++ b/OpenSim/Data/PGSQL/Resources/EstateStore.migrations | |||
@@ -3,6 +3,16 @@ | |||
3 | BEGIN TRANSACTION; | 3 | BEGIN TRANSACTION; |
4 | 4 | ||
5 | -- ---------------------------- | 5 | -- ---------------------------- |
6 | -- SEQUENCE estate_settings_id | ||
7 | -- ---------------------------- | ||
8 | CREATE SEQUENCE IF NOT EXISTS "public"."estate_settings_id" | ||
9 | INCREMENT 100 | ||
10 | MINVALUE 1 | ||
11 | MAXVALUE 9223372036854775807 | ||
12 | START 100 | ||
13 | CACHE 1; | ||
14 | |||
15 | -- ---------------------------- | ||
6 | -- Table structure for estate_groups | 16 | -- Table structure for estate_groups |
7 | -- ---------------------------- | 17 | -- ---------------------------- |
8 | CREATE TABLE IF NOT EXISTS "public"."estate_groups" ( | 18 | CREATE TABLE IF NOT EXISTS "public"."estate_groups" ( |