mirror of
https://github.com/opensim/opensim.git
synced 2026-06-10 14:15:36 +08:00
* Fixes NHibernate overflow exception when saving some objects (under at least PostgreSQL 8.3) * Thanks Tommil!
11 lines
243 B
SQL
11 lines
243 B
SQL
CREATE TABLE Assets (
|
|
ID VARCHAR(36) NOT NULL,
|
|
Type SMALLINT DEFAULT NULL,
|
|
Name VARCHAR(64) DEFAULT NULL,
|
|
Description VARCHAR(64) DEFAULT NULL,
|
|
Local BIT DEFAULT NULL,
|
|
Temporary BIT DEFAULT NULL,
|
|
Data BLOB,
|
|
PRIMARY KEY (ID)
|
|
);
|