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:
parent
93af381436
commit
d0db784b22
1 changed files with 1 additions and 1 deletions
|
@ -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 (
|
||||||
|
|
Loading…
Reference in a new issue