added position column to playlist_songs table

This commit is contained in:
2024-05-04 19:43:43 -04:00
parent 9c2cd94955
commit 4d734ef594
5 changed files with 9 additions and 6 deletions

View File

@ -26,6 +26,7 @@ diesel::table! {
playlist_songs (playlist_id, song_id) {
playlist_id -> Int4,
song_id -> Int4,
position -> Int4,
}
}