Add warning to the migration

This commit is contained in:
Mark Felder 2020-08-12 11:13:24 -05:00
parent ff4e282aad
commit b89fc1f227
1 changed files with 2 additions and 0 deletions

View File

@ -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