store linksetdata in sqlite and pgsql

This commit is contained in:
UbitUmarov
2024-03-29 00:46:29 +00:00
parent 8fbf905de5
commit ed0044564d
4 changed files with 34 additions and 2 deletions

View File

@@ -405,3 +405,8 @@ BEGIN;
ALTER TABLE `prims` ADD COLUMN `sopanims` blob default NULL;
ALTER TABLE `primshapes` ADD COLUMN `MatOvrd` blob default NULL;
COMMIT;
:VERSION 41 #----- add linkset data binary storage column
BEGIN;
ALTER TABLE `prims` ADD COLUMN `lnkstBinData` blob default NULL;
COMMIT;