FSAssetStore.migrations 294 B

1234567891011121314
  1. :VERSION 1
  2. BEGIN TRANSACTION;
  3. CREATE TABLE fsassets (
  4. "id" uuid NOT NULL PRIMARY KEY,
  5. "type" integer NOT NULL,
  6. "hash" char(64) NOT NULL,
  7. "create_time" integer NOT NULL DEFAULT '0',
  8. "access_time" integer NOT NULL DEFAULT '0',
  9. "asset_flags" integer NOT NULL DEFAULT '0'
  10. );
  11. COMMIT;