Changes between Version 20 and Version 21 of QuerysetRefactorBranch
- Timestamp:
- Apr 28, 2008, 12:36:46 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
QuerysetRefactorBranch
v20 v21 51 51 #!python 52 52 class Tag(models.Model): 53 parent = models.ForeignKey( self, blank=True, null=True)53 parent = models.ForeignKey('self', blank=True, null=True) 54 54 55 55 class Meta: