diff options
author | UbitUmarov | 2018-12-28 18:52:31 +0000 |
---|---|---|
committer | UbitUmarov | 2018-12-28 18:52:31 +0000 |
commit | 8d28c9487943ec5221464b0661a504db44c0fa5e (patch) | |
tree | d26a363138967bc356226e3484db564a6127b4a7 /OpenSim/Data/PGSQL/Resources | |
parent | PGSQL: store vehicle data (diff) | |
download | opensim-SC-8d28c9487943ec5221464b0661a504db44c0fa5e.zip opensim-SC-8d28c9487943ec5221464b0661a504db44c0fa5e.tar.gz opensim-SC-8d28c9487943ec5221464b0661a504db44c0fa5e.tar.bz2 opensim-SC-8d28c9487943ec5221464b0661a504db44c0fa5e.tar.xz |
PGSQL: it may be a good idea to also add the field to the table
Diffstat (limited to 'OpenSim/Data/PGSQL/Resources')
-rw-r--r-- | OpenSim/Data/PGSQL/Resources/RegionStore.migrations | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Data/PGSQL/Resources/RegionStore.migrations b/OpenSim/Data/PGSQL/Resources/RegionStore.migrations index fcefb6b..58e84f7 100644 --- a/OpenSim/Data/PGSQL/Resources/RegionStore.migrations +++ b/OpenSim/Data/PGSQL/Resources/RegionStore.migrations | |||
@@ -1225,3 +1225,10 @@ ALTER TABLE "public"."prims" | |||
1225 | ELSE NULL | 1225 | ELSE NULL |
1226 | END; | 1226 | END; |
1227 | COMMIT; | 1227 | COMMIT; |
1228 | |||
1229 | :VERSION 48 #---- field Vehicle to table prims | ||
1230 | |||
1231 | BEGIN TRANSACTION; | ||
1232 | |||
1233 | ALTER TABLE prims ADD "Vehicle" TEXT; | ||
1234 | COMMIT; | ||