2022-02-26 06:11:42 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2023-01-01 11:11:47 +00:00
|
|
|
# Copyright © 2017-2023 Pleroma Authors <https://pleroma.social/>
|
2022-02-26 06:11:42 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
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
|