what2watch/migrations/20230426221940_init.up.sql

74 lines
2.8 KiB
MySQL
Raw Normal View History

2023-04-27 00:08:49 +00:00
-- note: sqlite-specific migration due to the types of the columns
-- When used for an ID, a blob is a UUID in byte form, or a vector of those like for friends list.
-- Otherwise, for content, a blob is just binary data, possibly representing UTF-8 text.
-- Dates are ints, unix epoch style
2023-04-27 00:08:49 +00:00
-- users
create table if not exists witches (
2023-05-28 19:58:26 +00:00
id blob not null primary key,
2023-05-12 19:08:18 +00:00
username text not null unique,
displayname text,
email text,
2023-05-12 22:36:19 +00:00
last_seen int,
pwhash blob not null,
created_at int not null default (unixepoch()),
last_updated int not null default (unixepoch())
2023-04-27 00:08:49 +00:00
);
-- table of things to watch
create table if not exists watches (
id blob not null primary key,
typ int not null, -- enum for movie or tv show or whatev
2023-04-27 00:08:49 +00:00
title text not null,
imdb text, -- possible url for imdb or other metadata-esque site to show the user
runtime int,
release_date int,
created_at int not null default (unixepoch()),
last_updated int not null default (unixepoch())
2023-04-27 00:08:49 +00:00
);
-- table of what people want to watch
create table if not exists witch_watch (
id blob not null primary key,
witch blob not null,
watch blob not null,
party blob, -- list of witch IDs, but we can also scan for friends that want to watch the same thing
priority int, -- 1-5 how much do you want to watch it
2023-04-27 00:08:49 +00:00
public boolean not null,
watched boolean not null,
when_added int,
when_watched int,
created_at int not null default (unixepoch()),
last_updated int not null default (unixepoch()),
2023-04-27 00:08:49 +00:00
foreign key (witch) references witches (id) on delete cascade on update no action,
foreign key (watch) references watches (id) on delete cascade on update no action
);
-- friend lists; this should really be a graph db, maybe the whole thing should be
-- TODO: look into replacing sqlite with https://www.cozodb.org/
2023-04-27 00:08:49 +00:00
create table if not exists covens (
witch blob not null primary key,
coven blob, -- possibly empty friends list in some app-specific format
created_at int not null default (unixepoch()),
last_updated int not null default (unixepoch()),
2023-04-27 00:08:49 +00:00
foreign key (witch) references witches (id) on delete cascade on update no action
);
create table if not exists watch_notes (
id blob not null primary key,
witch blob not null,
watch blob not null,
note blob,
public boolean not null,
created_at int not null default (unixepoch()),
last_updated int not null default (unixepoch()),
foreign key (witch) references witches (id) on delete cascade on update no action,
foreign key (watch) references watches (id) on delete cascade on update no action
);
2023-04-27 00:08:49 +00:00
-- indices, not needed for covens
2023-05-15 03:33:36 +00:00
create index if not exists witch_dex on witches ( username, email );
create index if not exists watch_dex on watches ( title, runtime, release_date );
create index if not exists ww_dex on witch_watch ( witch, watch, public );
create index if not exists note_dex on watch_notes ( witch, watch, public );