mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 09:02:41 +00:00
c0c4810662
Connection error handling as well as uprade error handling still need to be implemented.
36 lines
1.4 KiB
SQL
36 lines
1.4 KiB
SQL
-- SPDX-License-Identifier: MIT
|
|
-- Copyright 2017 J. King, Dustin Wilson et al.
|
|
-- See LICENSE and AUTHORS files for details
|
|
|
|
-- Sessions for Tiny Tiny RSS (and possibly others)
|
|
create table arsse_sessions (
|
|
id text primary key,
|
|
created timestamp(0) with time zone not null default CURRENT_TIMESTAMP,
|
|
expires timestamp(0) with time zone not null,
|
|
user text not null references arsse_users(id) on delete cascade on update cascade
|
|
);
|
|
|
|
-- User-defined article labels for Tiny Tiny RSS
|
|
create table arsse_labels (
|
|
id bigserial primary key,
|
|
owner text not null references arsse_users(id) on delete cascade on update cascade,
|
|
name text not null,
|
|
modified timestamp(0) with time zone not null default CURRENT_TIMESTAMP,
|
|
unique(owner,name)
|
|
);
|
|
|
|
-- Labels assignments for articles
|
|
create table arsse_label_members (
|
|
label bigint not null references arsse_labels(id) on delete cascade,
|
|
article bigint not null references arsse_articles(id) on delete cascade,
|
|
subscription bigint not null references arsse_subscriptions(id) on delete cascade,
|
|
assigned smallint not null default 1,
|
|
modified timestamp(0) with time zone not null default CURRENT_TIMESTAMP,
|
|
primary key(label,article)
|
|
);
|
|
|
|
-- alter marks table to add Tiny Tiny RSS' notes
|
|
alter table arsse_marks add column note text not null default '';
|
|
|
|
-- set version marker
|
|
update arsse_meta set value = '2' where key = 'schema_version';
|