9 lines
245 B
MySQL
9 lines
245 B
MySQL
|
-- 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)
|
||
|
);
|