Set `users.approval_pending` default to `false`

This commit is contained in:
Egor Kislitsyn 2020-08-11 17:21:17 +04:00
parent 686002164a
commit 304ed35743
No known key found for this signature in database
GPG Key ID: 1B49CB15B71E7805
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
defmodule Pleroma.Repo.Migrations.SetDefaultsToUserApprovalPending do
use Ecto.Migration
def up do
execute("UPDATE users SET approval_pending = false WHERE approval_pending IS NULL")
alter table(:users) do
modify(:approval_pending, :boolean, default: false, null: false)
end
end
def down do
:ok
end
end