From: Mark Felder Date: Wed, 12 Aug 2020 16:13:24 +0000 (-0500) Subject: Add warning to the migration X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=b89fc1f2274424e7542a133d96373a1738eb53bb;p=akkoma Add warning to the migration --- 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