From 233946654272562dc73e471ac34cf4df31934a57 Mon Sep 17 00:00:00 2001 From: bogdanvlviv Date: Mon, 7 Nov 2016 01:43:59 +0200 Subject: [PATCH] Add missing spaces [ci skip] --- guides/source/active_record_migrations.md | 4 ++-- 1 file 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 ```