1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-22 13:12:41 +00:00

PostgreSQL schema tweak

This commit is contained in:
J. King 2018-11-27 17:50:38 -05:00
parent 93af381436
commit d0db784b22

View file

@ -8,7 +8,7 @@ create table arsse_sessions (
id text primary key, id text primary key,
created timestamp(0) with time zone not null default CURRENT_TIMESTAMP, created timestamp(0) with time zone not null default CURRENT_TIMESTAMP,
expires timestamp(0) with time zone not null, expires timestamp(0) with time zone not null,
user text not null references arsse_users(id) on delete cascade on update cascade "user" text not null references arsse_users(id) on delete cascade on update cascade
); );
create table arsse_labels ( create table arsse_labels (