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
|
2019-02-22 14:18:52 +01:00
|
|
|
add(:state, :integer)
|
|
|
|
add(:group_id, references(:groups, on_delete: :nothing))
|
|
|
|
add(:account_id, references(:accounts, on_delete: :nothing))
|
2017-12-08 09:58:14 +01:00
|
|
|
|
|
|
|
timestamps()
|
|
|
|
end
|
|
|
|
|
2019-02-22 14:18:52 +01:00
|
|
|
create(index(:group_requests, [:group_id]))
|
|
|
|
create(index(:group_requests, [:account_id]))
|
2017-12-08 09:58:14 +01:00
|
|
|
end
|
|
|
|
end
|