Add image_path column to playlists table

This commit is contained in:
2025-06-07 15:17:15 +00:00
parent f6211cbe2e
commit 92e13dfba7
3 changed files with 3 additions and 0 deletions

View File

@ -0,0 +1 @@
ALTER TABLE playlists DROP COLUMN image_path;

View File

@ -0,0 +1 @@
ALTER TABLE playlists ADD COLUMN image_path VARCHAR;

View File

@ -54,6 +54,7 @@ diesel::table! {
updated_at -> Timestamp, updated_at -> Timestamp,
owner_id -> Int4, owner_id -> Int4,
name -> Text, name -> Text,
image_path -> Nullable<Varchar>,
} }
} }