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