summaryrefslogtreecommitdiff
path: root/sql-files/mail.sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql-files/mail.sql')
-rw-r--r--sql-files/mail.sql23
1 files changed, 0 insertions, 23 deletions
diff --git a/sql-files/mail.sql b/sql-files/mail.sql
deleted file mode 100644
index b5fd22ead..000000000
--- a/sql-files/mail.sql
+++ /dev/null
@@ -1,23 +0,0 @@
-DROP TABLE IF EXISTS `mail`;
-CREATE TABLE `mail` (
- `id` bigint(20) unsigned NOT NULL auto_increment,
- `send_name` tinytext NOT NULL DEFAULT '',
- `send_id` int(11) unsigned NOT NULL default '0',
- `dest_name` tinytext NOT NULL DEFAULT '',
- `dest_id` int(11) unsigned NOT NULL default '0',
- `title` tinytext NOT NULL DEFAULT '',
- `message` text NOT NULL DEFAULT '',
- `time` int(11) unsigned NOT NULL default '0',
- `read_flag` tinyint(1) unsigned NOT NULL default '0',
- `zeny` int(11) unsigned NOT NULL default '0',
- `nameid` int(11) unsigned NOT NULL default '0',
- `amount` int(11) unsigned NOT NULL default '0',
- `refine` tinyint(3) unsigned NOT NULL default '0',
- `attribute` tinyint(4) unsigned NOT NULL default '0',
- `identify` smallint(6) NOT NULL default '0',
- `card0` smallint(11) NOT NULL default '0',
- `card1` smallint(11) NOT NULL default '0',
- `card2` smallint(11) NOT NULL default '0',
- `card3` smallint(11) NOT NULL default '0',
- PRIMARY KEY (`id`)
-) ENGINE=MyISAM;