summaryrefslogtreecommitdiff
path: root/sql-files/upgrade_svn1759.sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql-files/upgrade_svn1759.sql')
-rw-r--r--sql-files/upgrade_svn1759.sql18
1 files changed, 0 insertions, 18 deletions
diff --git a/sql-files/upgrade_svn1759.sql b/sql-files/upgrade_svn1759.sql
deleted file mode 100644
index 281cef6c9..000000000
--- a/sql-files/upgrade_svn1759.sql
+++ /dev/null
@@ -1,18 +0,0 @@
-
-CREATE TABLE `chatlog` (
- `id` bigint(20) NOT NULL auto_increment,
- `time` datetime NOT NULL default '0000-00-00 00:00:00',
- `type` enum('W','P','G') NOT NULL default 'W',
- `type_id` int(11) NOT NULL default '0',
- `src_charid` int(11) NOT NULL default '0',
- `src_accountid` int(11) NOT NULL default '0',
- `src_map` varchar(17) NOT NULL default '',
- `src_map_x` tinyint(4) NOT NULL default '0',
- `src_map_y` tinyint(4) NOT NULL default '0',
- `dst_charname` varchar(25) NOT NULL default '',
- `message` varchar(150) NOT NULL default '',
- PRIMARY KEY (`id`)
-) ENGINE=MyISAM AUTO_INCREMENT=1 ;
-
-
-