Merge pull request #1029 from carmi/patch-1

Fix CharField typo in legacy-databases.txt docs
This commit is contained in:
Simon Charette 2013-04-24 11:03:58 -07:00
commit 909873060c
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ this generated model definition:
class Person(models.Model):
id = models.IntegerField(primary_key=True)
first_name = models.ChaField(max_length=70)
first_name = models.CharField(max_length=70)
class Meta:
**managed = False**
db_table = 'CENSUS_PERSONS'