mirror of
https://github.com/opensim/opensim.git
synced 2026-06-11 22:55:48 +08:00
11 lines
228 B
SQL
11 lines
228 B
SQL
create table Assets (
|
|
ID NVARCHAR(36) not null,
|
|
Type SMALLINT null,
|
|
Name NVARCHAR(64) null,
|
|
Description NVARCHAR(64) null,
|
|
Local BIT null,
|
|
Temporary BIT null,
|
|
Data VARBINARY(max) null,
|
|
primary key (ID)
|
|
)
|