Merge branch 'develop' into refactor/discoverable_user_field
This commit is contained in:
commit
fb056ce05b
77 changed files with 356 additions and 292 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