store the new variables on mysql

This commit is contained in:
UbitUmarov
2020-01-22 21:32:40 +00:00
parent da0ba17d1a
commit 33eabf1069
2 changed files with 44 additions and 19 deletions

View File

@@ -474,3 +474,13 @@ BEGIN;
ALTER TABLE `prims` ADD COLUMN `sopanims` blob default NULL;
COMMIT;
:VERSION 59 #----- Add standtarget and sit range
BEGIN;
ALTER TABLE `prims`
ADD COLUMN `standtargetx` float DEFAULT '0.0',
ADD COLUMN `standtargety` float DEFAULT '0.0',
ADD COLUMN `standtargetz` float DEFAULT '0.0',
ADD COLUMN `sitactrange` float DEFAULT '0.0';
COMMIT;