summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20200811143147_ap_id_not_null.exs
blob: a160daef4d6b44cd93dec427bcdc4d788b13cfd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

defmodule Pleroma.Repo.Migrations.ApIdNotNull do
  use Ecto.Migration

  require Logger

  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