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
parent
bdb0dddfcf
commit
be79b56cc3
|
@ -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;
|
Loading…
Reference in New Issue