Changes between Version 63 and Version 64 of SchemaEvolution


Ignore:
Timestamp:
Feb 3, 2011, 8:45:22 AM (13 years ago)
Author:
danielghe4381
Comment:

replaced maxlength with max_length in Alice model

Legend:

Unmodified
Added
Removed
Modified
  • SchemaEvolution

    v63 v64  
    3838{{{
    3939            class Entry(models.Model):
    40                 title = models.CharField(maxlength=30)
     40                title = models.CharField(max_length=30)
    4141                body = models.TextField()
    4242}}}
Back to Top