Revision 2, 485 bytes
(checked in by yumileroy, 17 years ago)
|
[svn] * Proper SVN structure
Original author: Neo2003
Date: 2008-10-02 16:23:55-05:00
|
Line | |
---|
1 | DROP TABLE IF EXISTS `instance`; |
---|
2 | CREATE TABLE `instance` ( |
---|
3 | `id` int(11) unsigned NOT NULL default '0' COMMENT 'instance id', |
---|
4 | `mapid` int(11) unsigned NOT NULL default '0' COMMENT 'real mapid', |
---|
5 | `state` int(11) NOT NULL default '0' COMMENT 'this instance state', |
---|
6 | `players` int(11) NOT NULL COMMENT 'map creater guid who in this instance', |
---|
7 | `lefttime` int(11) NOT NULL default '0' COMMENT 'this instance left time', |
---|
8 | PRIMARY KEY (`id`) |
---|
9 | ) ENGINE=MyISAM DEFAULT CHARSET=utf8; |
---|
10 | |
---|