mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 14:16:07 +08:00
I really didn't expect that one to work out of the box, but just managed
to get NHibernate + MySQL + Assets working.
This commit is contained in:
@@ -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;
|
||||
Reference in New Issue
Block a user