aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--guides/source/active_record_migrations.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/guides/source/active_record_migrations.md b/guides/source/active_record_migrations.md
index 628ff8b5bd..fd2125424b 100644
--- a/guides/source/active_record_migrations.md
+++ b/guides/source/active_record_migrations.md
@@ -434,7 +434,8 @@ change_column_default :products, :approved, false
This sets `:name` field on products to a `NOT NULL` column and the default
value of the `:approved` field to false.
-TIP: Unlike `change_column` (and `change_column_default`), `change_column_null` is reversible.
+TIP: Unlike `change_column` (and `change_column_default`), `change_column_null`
+is reversible.
### Column Modifiers