store the new variables on sqlite and pgsql ( could not test)

This commit is contained in:
UbitUmarov
2020-01-23 10:47:09 +00:00
parent 2a38210fe9
commit f61b83b1ea
4 changed files with 68 additions and 19 deletions

View File

@@ -377,3 +377,13 @@ COMMIT;
BEGIN;
ALTER TABLE `prims` ADD COLUMN `PhysInertia` TEXT default NULL;
COMMIT;
:VERSION 37 #----- Add standtarget and sit range
BEGIN;
ALTER TABLE `prims`
ADD COLUMN `standtargetx` float NOT NULL DEFAULT '0.0',
ADD COLUMN `standtargety` float NOT NULL DEFAULT '0.0',
ADD COLUMN `standtargetz` float NOT NULL DEFAULT '0.0',
ADD COLUMN `sitactrange` float NOT NULL DEFAULT '0.0';
COMMIT;