Skip to content

Commit

Permalink
fix: added missing backup table for verified imports
Browse files Browse the repository at this point in the history
  • Loading branch information
thorsten committed Oct 23, 2024
1 parent 2743c6f commit 89a5d95
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions phpmyfaq/src/phpMyFAQ/Database/Mysqli.php
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ public function getTableNames(string $prefix = ''): array
$prefix . 'faqadminlog',
$prefix . 'faqattachment',
$prefix . 'faqattachment_file',
$prefix . 'faqbackup',
$prefix . 'faqcaptcha',
$prefix . 'faqcategories',
$prefix . 'faqcategoryrelations',
Expand Down
1 change: 1 addition & 0 deletions phpmyfaq/src/phpMyFAQ/Database/Pgsql.php
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,7 @@ public function getTableNames(string $prefix = ''): array
$prefix . 'faqadminlog',
$prefix . 'faqattachment',
$prefix . 'faqattachment_file',
$prefix . 'faqbackup',
$prefix . 'faqcaptcha',
$prefix . 'faqcategories',
$prefix . 'faqcategoryrelations',
Expand Down
1 change: 1 addition & 0 deletions phpmyfaq/src/phpMyFAQ/Database/Sqlite3.php
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@ public function getTableNames(string $prefix = ''): array
$prefix . 'faqadminlog',
$prefix . 'faqattachment',
$prefix . 'faqattachment_file',
$prefix . 'faqbackup',
$prefix . 'faqcaptcha',
$prefix . 'faqcategories',
$prefix . 'faqcategoryrelations',
Expand Down
1 change: 1 addition & 0 deletions phpmyfaq/src/phpMyFAQ/Database/Sqlsrv.php
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,7 @@ public function getTableNames(string $prefix = ''): array
$prefix . 'faqadminlog',
$prefix . 'faqattachment',
$prefix . 'faqattachment_file',
$prefix . 'faqbackup',
$prefix . 'faqcaptcha',
$prefix . 'faqcategories',
$prefix . 'faqcategoryrelations',
Expand Down

0 comments on commit 89a5d95

Please sign in to comment.