Update actor

This commit is contained in:
Mirai Kumiko 2025-06-18 16:17:54 +02:00
parent df548a4943
commit 4cb3b702e8
Signed by: miraikumiko
GPG key ID: 3F178B1B5E0CB278
2 changed files with 10 additions and 19 deletions

View file

@ -23,11 +23,11 @@ defmodule Nulla.Repo.Migrations.CreateActors do
add :published, :utc_datetime
add :memorial, :boolean, default: false
add :publicKey, :map
add :tag, {:array, :map}
add :attachment, {:array, :map}
add :tag, {:array, :map}, default: []
add :attachment, {:array, :map}, default: []
add :endpoints, :map
add :icon, :map
add :image, :map
add :icon, :map, default: %{}
add :image, :map, default: %{}
add :vcard_bday, :date
add :vcard_Address, :string
end