Changes between Version 1 and Version 2 of ManyToManyManager


Ignore:
Timestamp:
Jun 1, 2007, 11:06:12 AM (17 years ago)
Author:
Marty Alchin <gulopine@…>
Comment:

Better normalization of the examples

Legend:

Unmodified
Added
Removed
Modified
  • ManyToManyManager

    v1 v2  
    88    name = models.CharField(maxlength=255)
    99
    10 class Movie(models.Model):
     10class Film(models.Model):
    1111    title = models.CharField(maxlength=255)
    1212    actors = models.ManyToManyField(Actor)
Back to Top