2020-08-11 14:52:28 +00:00
|
|
|
defmodule Pleroma.Repo.Migrations.ApIdNotNull do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
2020-08-13 10:32:05 +00:00
|
|
|
require Logger
|
|
|
|
|
2020-08-11 14:52:28 +00:00
|
|
|
def up do
|
2020-08-13 10:32:05 +00:00
|
|
|
Logger.warn(
|
|
|
|
"If this migration fails please open an issue at https://git.pleroma.social/pleroma/pleroma/-/issues/new \n"
|
|
|
|
)
|
2020-08-12 16:13:24 +00:00
|
|
|
|
2020-08-11 14:52:28 +00:00
|
|
|
alter table(:users) do
|
|
|
|
modify(:ap_id, :string, null: false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def down do
|
|
|
|
:ok
|
|
|
|
end
|
|
|
|
end
|