summaryrefslogtreecommitdiffstats
path: root/migrations/20241113160730_critch.sql
blob: 131daf36f888ed1f577ee5e3210ca871424cf9e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
create extension if not exists "uuid-ossp";

create table artists (
    id integer primary key generated always as identity,
    handle varchar(128) not null unique,
    name varchar(128),
    bio text,
    site varchar(256)
);

create table artworks (
    id integer primary key generated always as identity,
    title varchar(256),
    description text,
    url_source varchar(256),
    created_at timestamp not null default current_timestamp,
    artist_id integer not null,
    comment_number integer not null default 0,
    foreign key (artist_id) references artists(id)
);

create table comments (
    id integer unique not null,
    text text not null,
    artwork_id integer not null,
    created_at timestamp not null default current_timestamp,
    primary key (id, artwork_id),
    foreign key (artwork_id) references artworks(id)
);

create table comment_relations (
    artwork_id integer,
    foreign key (artwork_id) references artworks(id),
    in_reply_to_id integer,
    foreign key (in_reply_to_id) references comments(id),
    comment_id integer,
    foreign key (comment_id) references comments(id),
    primary key (artwork_id, in_reply_to_id, comment_id)
);

create table artwork_files (
    id uuid primary key default gen_random_uuid(),
    alt_text text,
    extension varchar(16),
    artwork_id integer,
    foreign key (artwork_id) references artworks(id)
);