create table series_links (
series_slug text not null references series (series_slug),
link_url text not null,
primary key (series_slug, link_url)
);