put the number in front of the migrations to make them easier to deal with

This commit is contained in:
Sean Dague
2008-01-23 20:42:50 +00:00
parent 51146fc80d
commit 781187e16f
4 changed files with 0 additions and 0 deletions

View 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;