Add a new experimental implementation of PGSQL FSAssets

Signed-off-by: UbitUmarov <ajlduarte@sapo.pt>
This commit is contained in:
TomTheDragon
2017-11-02 23:53:19 -04:00
committed by UbitUmarov
parent 5360a8fea4
commit 56d2db3a18
2 changed files with 330 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
:VERSION 1
BEGIN TRANSACTION;
CREATE TABLE fsassets (
"id" uuid NOT NULL PRIMARY KEY,
"type" integer NOT NULL,
"hash" char(64) NOT NULL,
"create_time" integer NOT NULL DEFAULT '0',
"access_time" integer NOT NULL DEFAULT '0',
"asset_flags" integer NOT NULL DEFAULT '0'
);
COMMIT;