summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2013-04-24 11:03:58 -0700
committerSimon Charette <charette.s@gmail.com>2013-04-24 11:03:58 -0700
commit909873060ca63eed855de219131a32454558980b (patch)
tree739f47c0e4a518c870271c1ed15970b52639c5dc /docs
parentdb394e6ab2c1d3d53b8b8d691e995d0c3584b944 (diff)
parent9e80663c95a1d2c17b0d6cf9400d882e4fa89721 (diff)
Merge pull request #1029 from carmi/patch-1
Fix CharField typo in legacy-databases.txt docs
Diffstat (limited to 'docs')
-rw-r--r--docs/howto/legacy-databases.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/howto/legacy-databases.txt b/docs/howto/legacy-databases.txt
index 4522ca01c0..0bea8b41c4 100644
--- a/docs/howto/legacy-databases.txt
+++ b/docs/howto/legacy-databases.txt
@@ -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'