Files
opensim/OpenSim/Data/PGSQL/Resources/FSAssetStore.migrations
T
2017-11-03 05:10:37 +00:00

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;