mirror of
https://github.com/opensim/opensim.git
synced 2026-05-15 19:35:41 +08:00
Thank you, RuudL, for a patch that brings MSSQL up to the same implementation level as MySQL.
14 lines
441 B
SQL
14 lines
441 B
SQL
CREATE TABLE [assets] (
|
|
[id] [varchar](36) NOT NULL,
|
|
[name] [varchar](64) NOT NULL,
|
|
[description] [varchar](64) NOT NULL,
|
|
[assetType] [tinyint] NOT NULL,
|
|
[local] [tinyint] NOT NULL,
|
|
[temporary] [tinyint] NOT NULL,
|
|
[data] [image] NOT NULL,
|
|
PRIMARY KEY CLUSTERED
|
|
(
|
|
[id] ASC
|
|
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
|
|
) ON [PRIMARY]
|