svn -> git Migration

This commit is contained in:
KimLS
2013-02-16 16:14:39 -08:00
parent 88c9715fb0
commit da7347f76f
1174 changed files with 445622 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
CREATE TABLE `mail` (
`msgid` int(10) unsigned NOT NULL auto_increment,
`charid` int(10) unsigned NOT NULL,
`timestamp` int(11) NOT NULL default '0',
`from` varchar(100) NOT NULL,
`subject` varchar(200) NOT NULL,
`body` text NOT NULL,
`to` text NOT NULL,
`status` tinyint(4) NOT NULL,
PRIMARY KEY (`msgid`),
KEY `charid` (`charid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
ALTER TABLE `character_` ADD `mailkey` CHAR( 16 ) NOT NULL default '0';