Skip to content

Commit

Permalink
WIP fix migration
Browse files Browse the repository at this point in the history
  • Loading branch information
saecki committed Nov 13, 2022
1 parent d0e2712 commit ef3222d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion migrations/2022-11-12-143833_multiple_artists/up.sql
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ CREATE TABLE songs (
label TEXT,
UNIQUE(path)
);
INSERT INTO songs SELECT id, path, parent, track_number, disc_number, title, artist, album_artist, year, album, artwork, duration, lyricist, composer, genre, label FROM songs_backup;
INSERT INTO songs SELECT id, path, parent, track_number, disc_number, title, year, album, artwork, duration, lyricist, composer, genre, label FROM songs_backup;

CREATE TABLE song_artists (
song INTEGER NOT NULL,
Expand Down

0 comments on commit ef3222d

Please sign in to comment.