diff options
author | Eileen M. Uchitelle <eileencodes@users.noreply.github.com> | 2016-11-06 19:28:06 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-06 19:28:06 -0500 |
commit | b67c1778701d2dc65f140407aa758bdc375451e9 (patch) | |
tree | 6730bfd3d028e2922ab7dc729296fdfc28c1b33a /guides/source | |
parent | 3359093ff622438141add95edf350c0b288176a0 (diff) | |
parent | 233946654272562dc73e471ac34cf4df31934a57 (diff) | |
download | rails-b67c1778701d2dc65f140407aa758bdc375451e9.tar.gz rails-b67c1778701d2dc65f140407aa758bdc375451e9.tar.bz2 rails-b67c1778701d2dc65f140407aa758bdc375451e9.zip |
Merge pull request #26986 from bogdanvlviv/docs_migrations
Add missing spaces [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/active_record_migrations.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/active_record_migrations.md b/guides/source/active_record_migrations.md index 815bdb5f4d..6e7e29ed60 100644 --- a/guides/source/active_record_migrations.md +++ b/guides/source/active_record_migrations.md @@ -958,10 +958,10 @@ ActiveRecord::Schema.define(version: 20080906171750) do create_table "products", force: true do |t| t.string "name" - t.text "description" + t.text "description" t.datetime "created_at" t.datetime "updated_at" - t.string "part_number" + t.string "part_number" end end ``` |