aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/PGSQL/Resources/FSAssetStore.migrations
blob: 3a072e566ed2026587cea80b30bea70b49373a86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;