mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2025-02-22 17:20:39 +00:00
16 lines
442 B
Elixir
16 lines
442 B
Elixir
defmodule Eventos.Repo.Migrations.CreateEventAccounts do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create table(:event_accounts, primary_key: false) do
|
|
add :roles, :integer
|
|
add :event_id, references(:events, on_delete: :nothing)
|
|
add :account_id, references(:accounts, on_delete: :nothing)
|
|
|
|
timestamps()
|
|
end
|
|
|
|
create index(:event_accounts, [:event_id])
|
|
create index(:event_accounts, [:account_id])
|
|
end
|
|
end
|