X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=priv%2Frepo%2Fmigrations%2F20200811143147_ap_id_not_null.exs;h=df649c7cabb7cf8cee0c8c93e335d64cc4dc5bd7;hb=refs%2Fheads%2Fdevelop;hp=3e5d27fe1b7b9d32bb0d6cb5ae92f4e9bdefc63b;hpb=ff4e282aad09954db5d7e234923854a21a002128;p=akkoma diff --git a/priv/repo/migrations/20200811143147_ap_id_not_null.exs b/priv/repo/migrations/20200811143147_ap_id_not_null.exs index 3e5d27fe1..df649c7ca 100644 --- a/priv/repo/migrations/20200811143147_ap_id_not_null.exs +++ b/priv/repo/migrations/20200811143147_ap_id_not_null.exs @@ -1,7 +1,13 @@ defmodule Pleroma.Repo.Migrations.ApIdNotNull do use Ecto.Migration + require Logger + 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