Skip to content

Commit

Permalink
fix: added missing bracket for setup querys
Browse files Browse the repository at this point in the history
  • Loading branch information
modelrailroader authored and thorsten committed Aug 8, 2023
1 parent 018a6f2 commit fa5e144
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion phpmyfaq/src/phpMyFAQ/Instance/Database/Mysqli.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class Mysqli extends Database implements Driver

'faqbookmarks' => 'CREATE TABLE %sfaqbookmarks (
userid INT(11) DEFAULT NULL,
faqid INT(11) DEFAULT NULL',
faqid INT(11) DEFAULT NULL) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci ENGINE = InnoDB',

'faqcaptcha' => 'CREATE TABLE %sfaqcaptcha (
id VARCHAR(6) NOT NULL,
Expand Down

0 comments on commit fa5e144

Please sign in to comment.