diff options
| author | Rob Hudson <rob@cogit8.org> | 2015-09-25 14:47:36 -0700 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-09-25 18:35:19 -0400 |
| commit | 4dcd4ef17ebfbf6986e5d97563081f4be0cda154 (patch) | |
| tree | 0a2e81d436c605ed138eb5e9a3953cd6eb139aef | |
| parent | 2ca137e271116342065d448d3fcbdf5d29b931ba (diff) | |
[1.8.x] Corrected use of 'affect' vs 'effect' in docs.
Backport of 021782d22b80ea57fdd5e040add58adeafaedc55 from master
| -rw-r--r-- | docs/ref/migration-operations.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/migration-operations.txt b/docs/ref/migration-operations.txt index 2307b5f0e7..f47451ff57 100644 --- a/docs/ref/migration-operations.txt +++ b/docs/ref/migration-operations.txt @@ -152,7 +152,7 @@ The ``preserve_default`` argument indicates whether the field's default value is permanent and should be baked into the project state (``True``), or if it is temporary and just for this migration (``False``) - usually because the migration is adding a non-nullable field to a table and needs -a default value to put into existing rows. It does not effect the behavior +a default value to put into existing rows. It does not affect the behavior of setting defaults in the database directly - Django never sets database defaults and always applies them in the Django ORM code. @@ -180,7 +180,7 @@ The ``preserve_default`` argument indicates whether the field's default value is permanent and should be baked into the project state (``True``), or if it is temporary and just for this migration (``False``) - usually because the migration is altering a nullable field to a non-nullable one and -needs a default value to put into existing rows. It does not effect the +needs a default value to put into existing rows. It does not affect the behavior of setting defaults in the database directly - Django never sets database defaults and always applies them in the Django ORM code. |
