AFAIK there is no possibility to use mulitple column primary keys in
django. But I don't think you need them. If you don't wan't to use
other tables with fks, you could use sth like this:

class Foo(models.Model):
    title = models.CharField()
    content = models.TextField()
    language = models.CharField(max_length=5)
    number = models.IntegerField()

    class Meta:
        unique_together = (('language', 'number'),)

You could use the number like you would like to use your id. The id-
column itself is of course still added by django as the pk.


--~--~---------~--~----~------------~-------~--~----~
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?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to