Files
opensim/OpenSim/Data/NHibernate/Resources/MySQLDialect/001_AssetStore.sql
Sean Dague be79b56cc3 I really didn't expect that one to work out of the box, but just managed
to get NHibernate + MySQL + Assets working.
2008-06-16 19:58:48 +00:00

14 lines
275 B
SQL

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;