defmodule Frenzy.Repo.Migrations.CreatItemUniqueIndex do use Ecto.Migration def change do create unique_index(:items, [:feed_id, :guid], name: :items_feed_guid_index) end end