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

This commit is contained in:
Kieran
2024-03-25 11:36:03 -07:00
committed by GitHub
parent d39ebe7ac1
commit a03f69a8d4
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