mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2024-12-22 16:03:25 +00:00
49a5725da3
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
10 lines
350 B
Elixir
10 lines
350 B
Elixir
defmodule Mobilizon.Storage.Repo.Migrations.AddContactsToEvents do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create table(:event_contacts, primary_key: false) do
|
|
add(:event_id, references(:events, on_delete: :delete_all), primary_key: true)
|
|
add(:actor_id, references(:actors, on_delete: :delete_all), primary_key: true)
|
|
end
|
|
end
|
|
end
|