6 lines
156 B
MySQL
6 lines
156 B
MySQL
|
create table series_links (
|
||
|
series_slug text not null references series (series_slug),
|
||
|
link_url text not null,
|
||
|
primary key (series_slug, link_url)
|
||
|
);
|