diff --git a/priv/repo/migrations/20250226105533_remove_unique_index_from_records.exs b/priv/repo/migrations/20250226105533_remove_unique_index_from_records.exs new file mode 100644 index 00000000..da65fbd5 --- /dev/null +++ b/priv/repo/migrations/20250226105533_remove_unique_index_from_records.exs @@ -0,0 +1,7 @@ +defmodule MusicLibrary.Repo.Migrations.RemoveUniqueIndexFromRecords do + use Ecto.Migration + + def change do + drop unique_index(:records, [:musicbrainz_id, :format]) + end +end