2018-10-11 17:37:39 +02:00
|
|
|
defmodule Mobilizon.Repo.Migrations.CreateGroupRequests do
|
2017-12-08 09:58:14 +01:00
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
|
|
|
create table(:group_requests) do
|
|
|
|
add :state, :integer
|
|
|
|
add :group_id, references(:groups, on_delete: :nothing)
|
|
|
|
add :account_id, references(:accounts, on_delete: :nothing)
|
|
|
|
|
|
|
|
timestamps()
|
|
|
|
end
|
|
|
|
|
|
|
|
create index(:group_requests, [:group_id])
|
|
|
|
create index(:group_requests, [:account_id])
|
2018-01-13 23:33:03 +01:00
|
|
|
|
2017-12-08 09:58:14 +01:00
|
|
|
end
|
|
|
|
end
|