Hash : 78dee358 Author : Thomas de Grivel Date : 2022-06-18T14:48:16
Download
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
defmodule Kmxgit.Repo.Migrations.Slug do use Ecto.Migration def change do alter table(:organisations) do add :slug_, :citext end alter table(:users) do add :slug_, :citext end alter table(:slugs) do modify :slug, :citext, null: false end end end