Add image_path column to albums table

This commit is contained in:
2024-05-16 18:13:14 -04:00
parent 60ad643669
commit cc4aee4ab4
4 changed files with 5 additions and 0 deletions

View File

@ -12,6 +12,7 @@ diesel::table! {
id -> Int4,
title -> Varchar,
release_date -> Nullable<Date>,
image_path -> Nullable<Varchar>,
}
}