mirror of
https://github.com/opensim/opensim.git
synced 2026-06-25 07:45:47 +08:00
Cleaned up schema creation scripts of MySQL to compliant form and created SQLite scripts from them. In future it would be optimal if scripts from different databases could be generated from MySQL scripts to ensure optimal consistency between schemas of different databases. Did not yet review column names. ID columns seem to have variety in naming which can be confusing.
11 lines
242 B
SQL
11 lines
242 B
SQL
CREATE TABLE Assets (
|
|
ID VARCHAR(36) NOT NULL,
|
|
Type TINYINT 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)
|
|
);
|