Support choosing a selected release

This commit is contained in:
Claudio Ortolina
2025-05-01 17:42:40 +01:00
parent cba06ec5dc
commit 3e7341d4ca
14 changed files with 137 additions and 4 deletions
@@ -0,0 +1,9 @@
defmodule MusicLibrary.Repo.Migrations.AddSelectedReleaseIdToRecords do
use Ecto.Migration
def change do
alter table(:records) do
add :selected_release_id, :string
end
end
end