From fa3108a9ef2baeed5a09642e16f75a5d9b2b2dc7 Mon Sep 17 00:00:00 2001 From: Juanito Fatas Date: Thu, 29 Jan 2015 15:30:47 +0800 Subject: [ci skip] Add a missing space in t.belongs_to argument. --- guides/source/association_basics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'guides') diff --git a/guides/source/association_basics.md b/guides/source/association_basics.md index dab885a8fb..802cbf3130 100644 --- a/guides/source/association_basics.md +++ b/guides/source/association_basics.md @@ -171,7 +171,7 @@ class CreateCustomers < ActiveRecord::Migration end create_table :orders do |t| - t.belongs_to :customer, index:true + t.belongs_to :customer, index: true t.datetime :order_date t.timestamps null: false end -- cgit v1.2.3