pleroma/priv/repo/migrations/20200811143147_ap_id_not_nu...

24 lines
519 B
Elixir
Raw Normal View History

2022-02-26 07:11:42 +01:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
2022-02-26 07:11:42 +01:00
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Repo.Migrations.ApIdNotNull do
use Ecto.Migration
2020-08-13 12:32:05 +02:00
require Logger
def up do
2023-11-28 21:00:20 +01:00
Logger.warning(
2020-08-13 12:32:05 +02:00
"If this migration fails please open an issue at https://git.pleroma.social/pleroma/pleroma/-/issues/new \n"
)
2020-08-12 18:13:24 +02:00
alter table(:users) do
modify(:ap_id, :string, null: false)
end
end
def down do
:ok
end
end