mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-28 03:51:02 +00:00
Merge pull request #382 from aaa2000/table_tags_entries_already_exists
Create sqlite table tags_entries only if not already exists
This commit is contained in:
commit
9c9b226589
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ class Database {
|
|||
|
||||
if (STORAGE == 'sqlite') {
|
||||
$sql = '
|
||||
CREATE TABLE tags_entries (
|
||||
CREATE TABLE IF NOT EXISTS tags_entries (
|
||||
id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE,
|
||||
entry_id INTEGER,
|
||||
tag_id INTEGER,
|
||||
|
|
Loading…
Reference in a new issue