Force pinned_objects to be empty, not null
This commit is contained in:
parent
e62d5d08f5
commit
929e60122f
1 changed files with 11 additions and 0 deletions
|
@ -0,0 +1,11 @@
|
|||
defmodule Pleroma.Repo.Migrations.ForcePinnedObjectsToExist do
|
||||
use Ecto.Migration
|
||||
|
||||
def change do
|
||||
execute("UPDATE users SET pinned_objects = '{}' WHERE pinned_objects IS NULL")
|
||||
|
||||
alter table("users") do
|
||||
modify(:pinned_objects, :map, null: false, default: %{})
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue