[Enhancement] Allow configuration of media container format (#383)

* Adds media container to media_profiles and updates option builder

* Added media container to media profile form
This commit is contained in:
Kieran
2024-09-10 11:44:57 -07:00
committed by GitHub
parent a0a02cb4be
commit e0745bdfbe
7 changed files with 57 additions and 9 deletions
BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 428 KiB

After

Width:  |  Height:  |  Size: 433 KiB

@@ -0,0 +1,9 @@
defmodule Pinchflat.Repo.Migrations.AddMediaContainerToMediaProfiles do
use Ecto.Migration
def change do
alter table(:media_profiles) do
add :media_container, :string
end
end
end