diff options
author | Sean Dague | 2008-01-23 20:42:50 +0000 |
---|---|---|
committer | Sean Dague | 2008-01-23 20:42:50 +0000 |
commit | 781187e16f27fe140b241481d4879e6de631ade8 (patch) | |
tree | cbdba39afab9024f6a1c766184f4e8e8e51cb1da /OpenSim/Framework/Data.SQLite/Resources/AssetStore_001.sql | |
parent | * Changing log messages to use 24 hour clock rather than 12 hour - hope nobod... (diff) | |
download | opensim-SC-781187e16f27fe140b241481d4879e6de631ade8.zip opensim-SC-781187e16f27fe140b241481d4879e6de631ade8.tar.gz opensim-SC-781187e16f27fe140b241481d4879e6de631ade8.tar.bz2 opensim-SC-781187e16f27fe140b241481d4879e6de631ade8.tar.xz |
put the number in front of the migrations to make them easier to deal with
Diffstat (limited to 'OpenSim/Framework/Data.SQLite/Resources/AssetStore_001.sql')
-rw-r--r-- | OpenSim/Framework/Data.SQLite/Resources/AssetStore_001.sql | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/OpenSim/Framework/Data.SQLite/Resources/AssetStore_001.sql b/OpenSim/Framework/Data.SQLite/Resources/AssetStore_001.sql deleted file mode 100644 index 1dc05d8..0000000 --- a/OpenSim/Framework/Data.SQLite/Resources/AssetStore_001.sql +++ /dev/null | |||
@@ -1,13 +0,0 @@ | |||
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; | ||