aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLite/Resources/AssetStore.migrations
blob: 0743c454a4388cd6341205c2d2bfd5811ff574db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
:VERSION 6

BEGIN TRANSACTION;

CREATE TABLE IF NOT EXISTS assets(
        UUID NOT NULL PRIMARY KEY,
        Name,
        Description,
        Type,
        Local,
        Temporary,
        asset_flags INTEGER NOT NULL DEFAULT 0,
        CreatorID varchar(128) default '',
        Data);

COMMIT;