Viktor wrote:
>
> Django's ORM is not about tables, columns and rows... It's about objects
> (or I'm missing something :)...
I'm been wondering the same thing, but with a different reason. My
guess is that django's not (yet, at any rate) trying to provide a full
ORM, but rather a thin, convenien
Don't know why Django's ORM works in this way, but I think this may be a
bug...
This is how my model looks like:
#- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
class Score(models.Model):
. . .
class Round(models.Model):
. . .
class Game(models.Model):
round = mode