mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 17:32:42 +08:00
* Add missing mssql migration files from http://opensimulator.org/mantis/view.php?id=2295
* Sorry about that
This commit is contained in:
17
OpenSim/Data/MSSQL/Resources/001_LogStore.sql
Normal file
17
OpenSim/Data/MSSQL/Resources/001_LogStore.sql
Normal file
@@ -0,0 +1,17 @@
|
||||
BEGIN TRANSACTION
|
||||
|
||||
CREATE TABLE [logs] (
|
||||
[logID] [int] NOT NULL,
|
||||
[target] [varchar](36) default NULL,
|
||||
[server] [varchar](64) default NULL,
|
||||
[method] [varchar](64) default NULL,
|
||||
[arguments] [varchar](255) default NULL,
|
||||
[priority] [int] default NULL,
|
||||
[message] [ntext],
|
||||
PRIMARY KEY CLUSTERED
|
||||
(
|
||||
[logID] ASC
|
||||
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
|
||||
) ON [PRIMARY]
|
||||
|
||||
COMMIT
|
||||
Reference in New Issue
Block a user