Skip to content

Commit

Permalink
Add an association with composite primary key
Browse files Browse the repository at this point in the history
  • Loading branch information
soundmonster committed May 18, 2021
1 parent 83af511 commit d2dc39b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions integration_test/support/migration.exs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ defmodule Ecto.Integration.Migration do
add :intensity, :float
add :author_id, :integer
add :posted, :date
add :composite_a, :integer
add :composite_b, :integer
timestamps(null: true)
end

Expand Down Expand Up @@ -108,6 +110,11 @@ defmodule Ecto.Integration.Migration do
add :name, :string
end

# TODO not sure if it is important to have a foreign keys defined properly; see other associations in "posts"
alter table(:posts) do
modify :composite_a, references(:composite_pk, column: :a, with: [composite_b: :b], type: :integer)
end

create table(:corrupted_pk, primary_key: false) do
add :a, :string
end
Expand Down

0 comments on commit d2dc39b

Please sign in to comment.