watch/migrations/20240902212954_add-series.sql
Thomas Gideon b2e55008dd Add ability to watch an episode
- Migration for new backing table.
- CRUD server functions, new components to display and interact.
2024-09-14 18:33:50 -04:00

12 lines
399 B
SQL

create table if not exists series (
id uuid default gen_random_uuid() not null primary key,
created timestamptz default now() not null,
updated timestamptz default now() not null,
name text not null,
source text not null check (source in (
'Disney', 'Hulu', 'Paramount', 'Prime', 'Max', 'Netflix', 'Shudder'
)),
source_url text not null,
imdb text null,
wikipedia text null
);