Change user.locked field to user.is_locked
This commit is contained in:
parent
eea879eb36
commit
9968b7efed
28 changed files with 89 additions and 74 deletions
|
|
@ -0,0 +1,15 @@
|
|||
# Pleroma: A lightweight social networking server
|
||||
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
||||
# SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
defmodule Pleroma.Repo.Migrations.RefactorLockedUserField do
|
||||
use Ecto.Migration
|
||||
|
||||
def up do
|
||||
execute("ALTER TABLE users RENAME COLUMN locked TO is_locked;")
|
||||
end
|
||||
|
||||
def down do
|
||||
execute("ALTER TABLE users RENAME COLUMN is_locked TO locked;")
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue