Hi, ALL, This is my first official post here so be gentle... ;-) I'm trying to make an application based on the following db structure:
table 1: id - primary key, fname char(40), lname char(40) table 2: id - primary key, position char(20) table 3: table1_id, table2_id - foreign key Now, from what I understand Django does not work well with tables without PK. So in order to make it around it just makes a bogus primary key in the table called id. What I'd like to know is this: there is no point of creating a PK for a table 3. In fact it is wrong as it completely destroys the purpose of the db schema. Can I prevent the creation of the PK in this one table somehow? If its not possible, is there a place where I can submit this as a bug/feature request? Thank you for any help. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CA%2BFnnTyii-umGTL%3D81PWWQP07ubyheZfTzmT5p%2Bzide-T0FvhA%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.

