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

This commit is contained in:
UbitUmarov
2020-03-27 17:34:05 +00:00
parent 1002987aea
commit 87646f340b
2 changed files with 18 additions and 8 deletions

View File

@@ -533,3 +533,9 @@ MODIFY `AttachedPosZ` float DEFAULT '0',
MODIFY `LoopedSoundGain` float DEFAULT '0';
COMMIT;
:VERSION 61 #----- Add pseudo CRC and region cache id
BEGIN;
ALTER TABLE `prims` ADD COLUMN `pseudocrc` int DEFAULT '0';
ALTER TABLE `regionsettings` ADD COLUMN `cacheID` char(36) DEFAULT NULL;
COMMIT;