OpenSimMirror/OpenSim/Data/SQLite/Resources/AssetStore.migrations

19 lines
305 B
Plaintext

: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;