Skip to content

Commit

Permalink
add missing IF NOT EXISTS clause to the char_achievements table c…
Browse files Browse the repository at this point in the history
…reation query
  • Loading branch information
Helianthella committed Sep 19, 2018
1 parent 611bda2 commit e71e41b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql-files/main.sql
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ CREATE TABLE IF NOT EXISTS `autotrade_merchants` (
-- Table structure for table `char_achievements`
--

CREATE TABLE `char_achievements` (
CREATE TABLE IF NOT EXISTS `char_achievements` (
`char_id` INT(11) UNSIGNED NOT NULL,
`ach_id` INT(11) UNSIGNED NOT NULL,
`completed_at` INT(10) UNSIGNED NOT NULL DEFAULT '0',
Expand Down

0 comments on commit e71e41b

Please sign in to comment.