diff options
author | Zachary Scott <e@zzak.io> | 2014-06-20 12:59:56 -0700 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2014-06-20 12:59:56 -0700 |
commit | 0e9a7059664eb9dee8e3afae60d26ff858d0d84b (patch) | |
tree | ed31ce1cdad36b4657073b72f62733681ce8ba64 /guides | |
parent | afa449c95f12cf85a6acdd3783b58f1843182b35 (diff) | |
download | rails-0e9a7059664eb9dee8e3afae60d26ff858d0d84b.tar.gz rails-0e9a7059664eb9dee8e3afae60d26ff858d0d84b.tar.bz2 rails-0e9a7059664eb9dee8e3afae60d26ff858d0d84b.zip |
:nail_care: wrap the tip from #15624 at 80 chars [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/active_record_migrations.md | 3 |
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 |