diff options
Diffstat (limited to 'OpenSim/Data/SQLite/Resources/001_AssetStore.sql')
-rw-r--r-- | OpenSim/Data/SQLite/Resources/001_AssetStore.sql | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/OpenSim/Data/SQLite/Resources/001_AssetStore.sql b/OpenSim/Data/SQLite/Resources/001_AssetStore.sql new file mode 100644 index 0000000..1dc05d8 --- /dev/null +++ b/OpenSim/Data/SQLite/Resources/001_AssetStore.sql | |||
@@ -0,0 +1,13 @@ | |||
1 | BEGIN TRANSACTION; | ||
2 | |||
3 | CREATE TABLE assets( | ||
4 | UUID varchar(255) primary key, | ||
5 | Name varchar(255), | ||
6 | Description varchar(255), | ||
7 | Type integer, | ||
8 | InvType integer, | ||
9 | Local integer, | ||
10 | Temporary integer, | ||
11 | Data blob); | ||
12 | |||
13 | COMMIT; | ||