Update actor

This commit is contained in:
Mirai Kumiko 2025-06-18 17:45:48 +02:00
parent caedaff0e2
commit 6be24c9544
Signed by: miraikumiko
GPG key ID: 3F178B1B5E0CB278
2 changed files with 4 additions and 4 deletions

View file

@ -29,8 +29,8 @@ defmodule Nulla.Models.Actor do
field :tag, {:array, :map}, default: []
field :attachment, {:array, :map}, default: []
field :endpoints, :map
field :icon, :map, default: %{}
field :image, :map, default: %{}
field :icon, :map
field :image, :map
field :vcard_bday, :date
field :vcard_Address, :string

View file

@ -26,8 +26,8 @@ defmodule Nulla.Repo.Migrations.CreateActors do
add :tag, {:array, :map}, default: []
add :attachment, {:array, :map}, default: []
add :endpoints, :map
add :icon, :map, default: %{}
add :image, :map, default: %{}
add :icon, :map
add :image, :map
add :vcard_bday, :date
add :vcard_Address, :string
end