Merge branch 'force_pinned_objects_to_exist' into 'develop'

Force pinned_objects to be empty, not null

See merge request soapbox-pub/soapbox!56
This commit is contained in:
Alex Gleason 2021-11-25 16:34:48 +00:00
commit ed9d1f4f2f

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