From: lain Date: Wed, 30 Sep 2020 12:17:21 +0000 (+0200) Subject: Migrations: Nullify old unique index on users.uri X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=1ae39441e6d516f8f1a0dd3ed47de9d8427477c5;p=akkoma Migrations: Nullify old unique index on users.uri --- diff --git a/priv/repo/migrations/20200928145912_revert_citext_change.exs b/priv/repo/migrations/20200928145912_revert_citext_change.exs index ab232f607..685a98533 100644 --- a/priv/repo/migrations/20200928145912_revert_citext_change.exs +++ b/priv/repo/migrations/20200928145912_revert_citext_change.exs @@ -6,6 +6,6 @@ defmodule Pleroma.Repo.Migrations.RevertCitextChange do modify(:uri, :text) end - create_if_not_exists(unique_index(:users, :uri)) + # create_if_not_exists(unique_index(:users, :uri)) end end