Add approval_pending field to User

This commit is contained in:
Alex Gleason 2020-07-12 19:11:30 -05:00
commit a62f17da17
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7
3 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,9 @@
defmodule Pleroma.Repo.Migrations.AddApprovalPendingToUsers do
use Ecto.Migration
def change do
alter table(:users) do
add(:approval_pending, :boolean)
end
end
end