mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-22 16:28:28 +00:00
svn -> git Migration
This commit is contained in:
@@ -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';
|
||||
Reference in New Issue
Block a user