8 lines
245 B
SQL
8 lines
245 B
SQL
-- Your SQL goes here
|
|
create table if not exists artists_tracks
|
|
(
|
|
artist_id varchar(24) references artists (id) on delete cascade,
|
|
track_id varchar(24) references tracks (id) on delete cascade,
|
|
|
|
primary key (artist_id, track_id)
|
|
);
|