futzing around on the NHibernate side again trying to connect

migrations into it.
This commit is contained in:
Sean Dague
2008-06-16 18:53:55 +00:00
parent e31de6707f
commit caa6b8467d
3 changed files with 25 additions and 8 deletions

View File

@@ -0,0 +1,14 @@
BEGIN TRANSACTION;
create table Assets(
ID varchar(36) not null primary key,
Type int default 0,
InvType int default 0,
Name varchar(64),
Description varchar(64),
Local boolean,
Temporary boolean,
Data blob,
);
END;