Add notes field to records

This commit is contained in:
Claudio Ortolina
2025-09-04 21:01:00 +03:00
parent a989418125
commit 45134d3f96
2 changed files with 12 additions and 1 deletions
@@ -0,0 +1,9 @@
defmodule MusicLibrary.Repo.Migrations.AddNotesToRecords do
use Ecto.Migration
def change do
alter table(:records) do
add :notes, :string
end
end
end