Started storing source images in internal metadata folder (#120)

This commit is contained in:
Kieran
2024-03-25 18:36:03 -07:00
committed by GitHub
parent 1b0d71ea48
commit 5c5e7a8a91
6 changed files with 108 additions and 24 deletions
@@ -0,0 +1,11 @@
defmodule Pinchflat.Repo.Migrations.AddImageAttrsToSourceMetadata do
use Ecto.Migration
def change do
alter table(:source_metadata) do
add :fanart_filepath, :string
add :poster_filepath, :string
add :banner_filepath, :string
end
end
end