store sop pseudocrc and region cacheID on PGSQL ( others later)

This commit is contained in:
UbitUmarov
2020-03-28 01:31:00 +00:00
parent 87646f340b
commit 0958eceadd
2 changed files with 22 additions and 4 deletions

View File

@@ -1242,3 +1242,11 @@ ADD COLUMN `standtargety` real DEFAULT '0.0',
ADD COLUMN `standtargetz` real DEFAULT '0.0',
ADD COLUMN `sitactrange` real DEFAULT '0.0';
COMMIT;
:VERSION 50 #----- Add pseudo CRC and region cache id
BEGIN;
ALTER TABLE `prims` ADD COLUMN `pseudocrc` integer DEFAULT '0';
ALTER TABLE `regionsettings` ADD COLUMN `cacheID` uuid DEFAULT NULL;
COMMIT;