I really didn't expect that one to work out of the box, but just managed

to get NHibernate + MySQL + Assets working.
0.6.0-stable
Sean Dague 2008-06-16 19:58:48 +00:00
parent bdb0dddfcf
commit be79b56cc3
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
START 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
);
COMMIT;