Forgot to change main.sql to reflect the update to quest_objective table.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@12582 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
Kevin 2008-04-13 22:37:04 +00:00
parent 302adbf42a
commit ea96b9da32

View File

@ -587,7 +587,8 @@ CREATE TABLE `quest_objective` (
`count` mediumint(8) unsigned NOT NULL default '0',
`name` varchar(255) NOT NULL default '',
`num` tinyint(3) unsigned NOT NULL,
PRIMARY KEY USING BTREE (`quest_id`,`num`)
`char_id` int(10) unsigned NOT NULL,
PRIMARY KEY USING BTREE (`quest_id`,`num`,`char_id`)
) ENGINE=MyISAM;
--