mirror of
https://github.com/opensim/opensim.git
synced 2026-06-03 17:16:31 +08:00
14 lines
275 B
SQL
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; |