Serve local cover images

This commit is contained in:
Claudio Ortolina
2024-09-16 09:50:07 +01:00
parent f1160eddd4
commit afc1802399
12 changed files with 92 additions and 15 deletions
@@ -0,0 +1,11 @@
defmodule MusicLibrary.Repo.Migrations.StoreCoverImages do
use Ecto.Migration
def change do
rename table(:records), :image, to: :image_url
alter table(:records) do
add :image_data, :blob
end
end
end