Set `users.approval_pending` default to `false`

stable
Egor Kislitsyn 4 years ago
parent 686002164a
commit 304ed35743
No known key found for this signature in database
GPG Key ID: 1B49CB15B71E7805

@ -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
Loading…
Cancel
Save