mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 09:16:28 +08:00
Duplicate OpenSim.Data.SQLite into OpenSim.Data.SQLiteNG. SQLiteNG will shortly be changed to work under mono 2.6 and above
This commit is contained in:
12
OpenSim/Data/SQLiteNG/Resources/001_AssetStore.sql
Normal file
12
OpenSim/Data/SQLiteNG/Resources/001_AssetStore.sql
Normal file
@@ -0,0 +1,12 @@
|
||||
BEGIN TRANSACTION;
|
||||
CREATE TABLE assets(
|
||||
UUID varchar(255) primary key,
|
||||
Name varchar(255),
|
||||
Description varchar(255),
|
||||
Type integer,
|
||||
InvType integer,
|
||||
Local integer,
|
||||
Temporary integer,
|
||||
Data blob);
|
||||
|
||||
COMMIT;
|
||||
Reference in New Issue
Block a user