56d2db3a18
Signed-off-by: UbitUmarov <ajlduarte@sapo.pt>
15 lines
294 B
Plaintext
15 lines
294 B
Plaintext
: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;
|