aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLite/Resources/001_AssetStore.sql
diff options
context:
space:
mode:
authorSean Dague2008-06-11 20:04:01 +0000
committerSean Dague2008-06-11 20:04:01 +0000
commit68b98aecab0906f6c55f8c567552fb39a3bda1a2 (patch)
treebb318506c8d2c958437bda62172885c9d98010f5 /OpenSim/Data/SQLite/Resources/001_AssetStore.sql
parentFor people receiving: Exception: System.ArgumentException: Value of -21474836... (diff)
downloadopensim-SC_OLD-68b98aecab0906f6c55f8c567552fb39a3bda1a2.zip
opensim-SC_OLD-68b98aecab0906f6c55f8c567552fb39a3bda1a2.tar.gz
opensim-SC_OLD-68b98aecab0906f6c55f8c567552fb39a3bda1a2.tar.bz2
opensim-SC_OLD-68b98aecab0906f6c55f8c567552fb39a3bda1a2.tar.xz
updated resources for current sqlite schema for migrations
Diffstat (limited to 'OpenSim/Data/SQLite/Resources/001_AssetStore.sql')
-rw-r--r--OpenSim/Data/SQLite/Resources/001_AssetStore.sql17
1 files changed, 8 insertions, 9 deletions
diff --git a/OpenSim/Data/SQLite/Resources/001_AssetStore.sql b/OpenSim/Data/SQLite/Resources/001_AssetStore.sql
index 1dc05d8..2e026ca 100644
--- a/OpenSim/Data/SQLite/Resources/001_AssetStore.sql
+++ b/OpenSim/Data/SQLite/Resources/001_AssetStore.sql
@@ -1,13 +1,12 @@
1BEGIN TRANSACTION; 1BEGIN TRANSACTION;
2
3CREATE TABLE assets( 2CREATE TABLE assets(
4 UUID varchar(255) primary key, 3 UUID varchar(255) primary key,
5 Name varchar(255), 4 Name varchar(255),
6 Description varchar(255), 5 Description varchar(255),
7 Type integer, 6 Type integer,
8 InvType integer, 7 InvType integer,
9 Local integer, 8 Local integer,
10 Temporary integer, 9 Temporary integer,
11 Data blob); 10 Data blob);
12 11
13COMMIT; 12COMMIT;