Tagged Questions

2
votes
1answer
2k views

Compound/Composite primary/unique key with Django

How can you create models (and thus tables) with a compound (composite) primary/unique key using Django?
1
vote
1answer
5k views

JPA - many to many relationship of a table with a compound-key with itself

I would like to create a many to many relationship of a table (RoutePlace) with itself using JPA anotations. The singularity of the table I want to join with itself is that it has a compound-key. ...