mirror of
https://github.com/moparisthebest/wallabag
synced 2024-11-26 19:02:18 -05:00
Added IF NOT EXISTS
This commit is contained in:
parent
df6c8b3be9
commit
44fd0faa23
@ -1,10 +1,10 @@
|
||||
CREATE TABLE config (
|
||||
CREATE TABLE IF NOT EXISTS config (
|
||||
id bigserial primary key,
|
||||
name varchar(255) NOT NULL,
|
||||
value varchar(255) NOT NULL
|
||||
);
|
||||
|
||||
CREATE TABLE entries (
|
||||
CREATE TABLE IF NOT EXISTS entries (
|
||||
id bigserial primary key,
|
||||
title varchar(255) NOT NULL,
|
||||
url varchar(255) NOT NULL,
|
||||
@ -14,7 +14,7 @@ CREATE TABLE entries (
|
||||
user_id integer NOT NULL
|
||||
);
|
||||
|
||||
CREATE TABLE users (
|
||||
CREATE TABLE IF NOT EXISTS users (
|
||||
id bigserial primary key,
|
||||
username varchar(255) NOT NULL,
|
||||
password varchar(255) NOT NULL,
|
||||
@ -22,20 +22,20 @@ CREATE TABLE users (
|
||||
email varchar(255) NOT NULL
|
||||
);
|
||||
|
||||
CREATE TABLE users_config (
|
||||
CREATE TABLE IF NOT EXISTS users_config (
|
||||
id bigserial primary key,
|
||||
user_id integer NOT NULL,
|
||||
name varchar(255) NOT NULL,
|
||||
value varchar(255) NOT NULL
|
||||
);
|
||||
|
||||
CREATE TABLE tags (
|
||||
CREATE TABLE IF NOT EXISTS tags (
|
||||
id bigserial primary key,
|
||||
value varchar(255) NOT NULL
|
||||
);
|
||||
|
||||
CREATE TABLE tags_entries (
|
||||
CREATE TABLE IF NOT EXISTS tags_entries (
|
||||
id bigserial primary key,
|
||||
entry_id integer NOT NULL,
|
||||
tag_id integer NOT NULL
|
||||
)
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user