소스 검색

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
Kevin 17 년 전
부모
커밋
ea96b9da32
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      sql-files/main.sql

+ 2 - 1
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;
 
 --