This commit is contained in:
Mirai Kumiko 2025-07-06 14:46:08 +02:00
parent f90a7133bc
commit 00ecbadeca
Signed by: miraikumiko
GPG key ID: 3F178B1B5E0CB278
29 changed files with 871 additions and 12 deletions

View file

@ -13,6 +13,7 @@ defmodule Nulla.Repo.Migrations.CreateNotes do
add :cc, {:array, :string}
add :sensitive, :boolean, default: false, null: false
add :content, :string
add :tag, {:array, :map}
add :language, :string
add :featured, :boolean, default: false, null: false
add :actor_id, references(:actors, on_delete: :delete_all)