mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 22:26:09 +08:00
add sqlite database definitions as Resources for SQLite.dll
This commit is contained in:
13
OpenSim/Framework/Data.SQLite/Resources/AssetStore_001.sql
Normal file
13
OpenSim/Framework/Data.SQLite/Resources/AssetStore_001.sql
Normal file
@@ -0,0 +1,13 @@
|
||||
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