1
0
Fork 0
mirror of https://framagit.org/framasoft/mobilizon.git synced 2025-02-22 17:20:39 +00:00
mobilizon/priv/repo/migrations/20171207163907_create_group_requests.exs
Thomas Citharel 90ceb4f6fe initial commit
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2017-12-08 09:58:14 +01:00

16 lines
421 B
Elixir

defmodule Eventos.Repo.Migrations.CreateGroupRequest do
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])
end
end