diff options
author | Kevin <Kevin@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-04-13 22:37:04 +0000 |
---|---|---|
committer | Kevin <Kevin@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-04-13 22:37:04 +0000 |
commit | c3d84f14f12357f80e9fd524238d1cf43d1f6327 (patch) | |
tree | 8a38b5743d99422c03e07407223b2acd37145967 /sql-files | |
parent | e5242b4b3842fc94a60ad2f66284162948baefeb (diff) | |
download | hercules-c3d84f14f12357f80e9fd524238d1cf43d1f6327.tar.gz hercules-c3d84f14f12357f80e9fd524238d1cf43d1f6327.tar.bz2 hercules-c3d84f14f12357f80e9fd524238d1cf43d1f6327.tar.xz hercules-c3d84f14f12357f80e9fd524238d1cf43d1f6327.zip |
Forgot to change main.sql to reflect the update to quest_objective table.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12582 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'sql-files')
-rw-r--r-- | sql-files/main.sql | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql-files/main.sql b/sql-files/main.sql index a12e32961..431c146b7 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; -- |