Force pinned_objects to be empty, not null

This commit is contained in:
NEETzsche 2021-11-25 16:34:48 +00:00 committed by Alex Gleason
parent e62d5d08f5
commit 929e60122f

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