Hash : 48bc8767 Author : Thomas de Grivel Date : 2021-11-18T10:26:26
Download
1 2 3 4 5 6 7 8 9 10
defmodule Kmxgit.Repo.Migrations.CreateUsersOrganisations do use Ecto.Migration def change do create table(:users_organisations, foreign_key: false) do add :user_id, references(:users) add :organisation_id, references(:organisations) end end end