Hi All,

Being new to Django, I am curious to know whether Django supports
composite primary keys. For example, can I have a schema like this:

Table Order (
 OrderID int  PK,
 OrderDate
 .
 .
 .
)

Table OrderItems (
 OrderID int PK,
 ItemNo int PK,
 Description,
 .
 .
 .
)

Table OrderItemDeliveryDates
(
 OrderID int PK,
 ItemNo int PK,
 DeliveryDate Date PK,
 Quantity Required
 .
 .
 .
)

Thanks,
Sanjay


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to