diff options
author | Mark Felder <feld@FreeBSD.org> | 2020-08-12 11:13:24 -0500 |
---|---|---|
committer | Mark Felder <feld@FreeBSD.org> | 2020-08-12 11:13:24 -0500 |
commit | b89fc1f2274424e7542a133d96373a1738eb53bb (patch) | |
tree | c619f4aff357c0bf728bd2a9e278a9e46baff258 | |
parent | ff4e282aad09954db5d7e234923854a21a002128 (diff) | |
download | pleroma-b89fc1f2274424e7542a133d96373a1738eb53bb.tar.gz |
Add warning to the migration
-rw-r--r-- | priv/repo/migrations/20200811143147_ap_id_not_null.exs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/priv/repo/migrations/20200811143147_ap_id_not_null.exs b/priv/repo/migrations/20200811143147_ap_id_not_null.exs index 3e5d27fe1..50f1810b2 100644 --- a/priv/repo/migrations/20200811143147_ap_id_not_null.exs +++ b/priv/repo/migrations/20200811143147_ap_id_not_null.exs @@ -2,6 +2,8 @@ defmodule Pleroma.Repo.Migrations.ApIdNotNull do use Ecto.Migration def up do + Logger.warn("If this migration fails please open an issue at https://git.pleroma.social/pleroma/pleroma/-/issues/new \n") + alter table(:users) do modify(:ap_id, :string, null: false) end |