mirror of
https://github.com/opensim/opensim.git
synced 2026-05-29 05:15:49 +08:00
changes it wouldn't come up). include embedded dialect specific sql files for nhibernate migrations figure out how to get the raw db connection so that migrations can work with nhibernate. create initial migration for NHibernate + SQLite + Assets.
14 lines
272 B
SQL
14 lines
272 B
SQL
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; |