mirror of
https://github.com/moparisthebest/wallabag
synced 2024-11-23 17:42:15 -05:00
Create sqlite table tags_entries only if not already exists
This commit is contained in:
parent
2abcccb371
commit
a562e3905a
@ -81,7 +81,7 @@ class Database {
|
|||||||
|
|
||||||
if (STORAGE == 'sqlite') {
|
if (STORAGE == 'sqlite') {
|
||||||
$sql = '
|
$sql = '
|
||||||
CREATE TABLE tags_entries (
|
CREATE TABLE IF NOT EXISTS tags_entries (
|
||||||
id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE,
|
id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE,
|
||||||
entry_id INTEGER,
|
entry_id INTEGER,
|
||||||
tag_id INTEGER,
|
tag_id INTEGER,
|
||||||
|
Loading…
Reference in New Issue
Block a user