1
0
Fork 0
mirror of https://git.pleroma.social/pleroma/pleroma.git synced 2025-03-06 03:31:50 +00:00
pleroma/priv/repo/migrations/20230504173400_remove_user_ap_enabled.exs

14 lines
364 B
Elixir
Raw Normal View History

2023-05-05 09:09:15 +00:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2023 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Repo.Migrations.RemoveUserApEnabled do
use Ecto.Migration
def change do
alter table(:users) do
remove(:ap_enabled, :boolean, default: false, null: false)
end
end
end