Add resolution option (#21)

* added preferred resolution to profiles

* Add resolution to download option builder
This commit is contained in:
Kieran
2024-02-15 18:21:41 -08:00
committed by GitHub
parent c5fcb8fe12
commit 53bd8681c3
7 changed files with 61 additions and 2 deletions
@@ -0,0 +1,9 @@
defmodule Pinchflat.Repo.Migrations.AddPreferredResolutionToMediaProfiles do
use Ecto.Migration
def change do
alter table(:media_profiles) do
add :preferred_resolution, :string, null: false, default: "1080p"
end
end
end