mirror of
https://github.com/opensim/opensim.git
synced 2026-05-27 20:35:59 +08:00
* Patch from justincc to fix Inconsistent automatic mysql table creation - see bug 169
This commit is contained in:
10
OpenSim/Framework/Data.MySQL/Resources/CreateLogsTable.sql
Normal file
10
OpenSim/Framework/Data.MySQL/Resources/CreateLogsTable.sql
Normal file
@@ -0,0 +1,10 @@
|
||||
CREATE TABLE `logs` (
|
||||
`logID` int(10) unsigned NOT NULL auto_increment,
|
||||
`target` varchar(36) default NULL,
|
||||
`server` varchar(64) default NULL,
|
||||
`method` varchar(64) default NULL,
|
||||
`arguments` varchar(255) default NULL,
|
||||
`priority` int(11) default NULL,
|
||||
`message` text,
|
||||
PRIMARY KEY (`logID`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rev. 1';
|
||||
Reference in New Issue
Block a user