pinchflat/priv/repo/migrations/20240320181210_remove_unique_index_from_sources.exs

7 lines
185 B
Elixir

defmodule Pinchflat.Repo.Migrations.RemoveUniqueIndexFromSources do
use Ecto.Migration
def change do
drop unique_index(:sources, [:collection_id, :media_profile_id])
end
end