From ea96b9da32c7f00badd25e660454e517d91b457c Mon Sep 17 00:00:00 2001 From: Kevin Date: Sun, 13 Apr 2008 22:37:04 +0000 Subject: [PATCH] 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 --- sql-files/main.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sql-files/main.sql b/sql-files/main.sql index a12e329610..431c146b7a 100644 --- a/sql-files/main.sql +++ b/sql-files/main.sql @@ -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; --