Converted MySQL migration history to the new format

Replaced all NNN_StoreName.sql migration resources with a more
readable, single-file-per-store
This commit is contained in:
AlexRa
2010-05-01 17:43:10 +03:00
parent b49fb3db7c
commit ee713cb253
79 changed files with 1228 additions and 1008 deletions

View File

@@ -0,0 +1,13 @@
:VERSION 1
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;