From 74f9a4629b95aa8fb76f84395a8c4b9efaaa6785 Mon Sep 17 00:00:00 2001 From: Prem Sichanugrist Date: Fri, 3 Jun 2011 15:06:03 -0400 Subject: [PATCH] Revise documentation indentation from [79990505e5080804b53d81fec059136afa2237d7] --- activerecord/CHANGELOG | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index f44ddc58b4..97bec3f11d 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -237,13 +237,13 @@ rails g model post user:belongs_to will generate the following: class CreatePosts < ActiveRecord::Migration - def change - create_table :posts do |t| - t.belongs_to :user - t.timestamps - end - add_index :posts, :user_id + def change + create_table :posts do |t| + t.belongs_to :user + t.timestamps end + add_index :posts, :user_id + end end [Santiago Pastorino]