Hash : 78dee358 Author : Thomas de Grivel Date : 2022-06-18T14:48:16
Download
1 2 3 4 5 6 7 8
defmodule Kmxgit.Repo.Migrations.Slug2 do use Ecto.Migration def change do drop index(:slugs, ["(lower(slug))"], unique: true) create index(:slugs, [:slug], unique: true) end end