forked from AkkomaGang/akkoma
Migrations: Fix Logger requirements.
This commit is contained in:
parent
b89fc1f227
commit
aaf7bd89a7
1 changed files with 5 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue