Force pinned_objects to be empty, not null

This commit is contained in:
NEETzsche 2021-11-29 18:08:09 +00:00 committed by lain
parent c97f99ccf2
commit 182c563ed0
1 changed files with 11 additions and 0 deletions

View File

@ -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