Remove record notes

This commit is contained in:
Claudio Ortolina
2025-09-07 15:06:13 +03:00
parent 4fca772b00
commit ea9f8ca9a3
2 changed files with 16 additions and 3 deletions
@@ -0,0 +1,15 @@
defmodule MusicLibrary.Repo.Migrations.RemoveRecordNotes do
use Ecto.Migration
def up do
alter table(:records) do
remove(:notes)
end
end
def down do
alter table(:records) do
add :notes, :string
end
end
end