akkoma/priv/repo/migrations/20200811143147_ap_id_not_null.exs

20 lines
357 B
Elixir
Raw Normal View History

defmodule Pleroma.Repo.Migrations.ApIdNotNull do
use Ecto.Migration
2020-08-13 10:32:05 +00:00
require Logger
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
alter table(:users) do
modify(:ap_id, :string, null: false)
end
end
def down do
:ok
end
end