* Patch from justincc to fix Inconsistent automatic mysql table creation - see bug 169

This commit is contained in:
Teravus Ovares
2007-12-12 01:23:15 +00:00
parent e32150b1db
commit 83f727bb7c
6 changed files with 183 additions and 0 deletions

View 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';