mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 08:06:27 +08:00
put the number in front of the migrations to make them easier to deal with
This commit is contained in:
13
OpenSim/Framework/Data.SQLite/Resources/001_AssetStore.sql
Normal file
13
OpenSim/Framework/Data.SQLite/Resources/001_AssetStore.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