root/sql-files/upgrade_svn12559.sql @ 5

Revision 1, 0.7 kB (checked in by jinshiro, 17 years ago)
Line 
1--
2-- Table structure for table `quest`
3--
4
5DROP TABLE IF EXISTS `quest`;
6CREATE TABLE `quest` (
7  `char_id` int(11) unsigned NOT NULL default '0',
8  `quest_id` int(10) unsigned NOT NULL,
9  `state` enum('1','0') NOT NULL default '0',
10  PRIMARY KEY  USING BTREE (`char_id`,`quest_id`)
11) ENGINE=MyISAM;
12
13--
14-- Table structure for table `quest_mob`
15--
16
17DROP TABLE IF EXISTS `quest_objective`;
18CREATE TABLE `quest_objective` (
19  `quest_id` int(11) unsigned NOT NULL,
20  `count` mediumint(8) unsigned NOT NULL default '0',
21  `name` varchar(255) NOT NULL default '',
22  `num` tinyint(3) unsigned NOT NULL,
23  PRIMARY KEY  USING BTREE (`quest_id`,`num`)
24) ENGINE=MyISAM;
Note: See TracBrowser for help on using the browser.