forked from AkkomaGang/akkoma
15 lines
327 B
Elixir
15 lines
327 B
Elixir
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
|
|
end
|
|
|
|
def down do
|
|
:ok
|
|
end
|
|
end
|