root/trunk/sql/updates/0.6/2580_insatne.sql @ 2

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 
1DROP TABLE IF EXISTS `instance`;
2CREATE 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
Note: See TracBrowser for help on using the browser.