X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=install%2Fpostgres.sql;h=1d73dfcba2f294d46ecb25e20f0ce1190fb192e8;hb=8327f1c371ad1d930bf9c9a13e443f2aa29ecfe3;hp=fe8f559ca29c31925a69b88d0d2cab5d815f117a;hpb=05d6dd487ceaf8c00510ebe5e0e762fcc11df691;p=github%2Fwallabag%2Fwallabag.git diff --git a/install/postgres.sql b/install/postgres.sql index fe8f559c..1d73dfcb 100644 --- a/install/postgres.sql +++ b/install/postgres.sql @@ -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 -) \ No newline at end of file +)