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

@ -17,8 +17,8 @@ defmodule Nulla.Repo.Migrations.CreateRelations do
add :requested, :boolean, default: false, null: false
add :note, :string
add :local_actor_id, references(:actors, type: :bigint), null: false
add :remote_actor_id, references(:actors, type: :bigint), null: false
add :local_actor_id, references(:actors, on_delete: :delete_all), null: false
add :remote_actor_id, references(:actors, on_delete: :delete_all), null: false
timestamps(type: :utc_datetime)
end