Migrations: Fix Logger requirements.

This commit is contained in:
lain 2020-08-13 12:32:05 +02:00
parent b89fc1f227
commit aaf7bd89a7
1 changed files with 5 additions and 1 deletions

View File

@ -1,8 +1,12 @@
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")
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)