2022-02-25 22:11:42 -08:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-07-15 15:08:46 -07:00
|
|
|
defmodule Pleroma.Repo.Migrations.AddApprovalFieldsToUsers do
|
2020-07-13 22:22:12 -07:00
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
|
|
|
alter table(:users) do
|
2020-07-15 15:08:46 -07:00
|
|
|
add(:approval_pending, :boolean)
|
2020-07-27 13:13:34 -07:00
|
|
|
add(:registration_reason, :text)
|
2020-07-13 22:22:12 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|