X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=install%2Fpostgres.sql;h=1d73dfcba2f294d46ecb25e20f0ce1190fb192e8;hb=505a74ad1de7cf2cd3605e793233365501f03d87;hp=fe8f559ca29c31925a69b88d0d2cab5d815f117a;hpb=60fc4f4b1ab37fbfe9021f3fa1395d66a4424ed2;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 +)