From 07a3c2103c0db8f960ea2ba2a8748a2fe2bed206 Mon Sep 17 00:00:00 2001 From: Francesco Rodriguez Date: Sun, 30 Sep 2012 21:01:43 -0500 Subject: [PATCH] fix example in Migration docs [ci skip] --- activerecord/lib/active_record/migration.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activerecord/lib/active_record/migration.rb b/activerecord/lib/active_record/migration.rb index ce9c2fbac0b99..a68663cf53c60 100644 --- a/activerecord/lib/active_record/migration.rb +++ b/activerecord/lib/active_record/migration.rb @@ -70,7 +70,7 @@ def initialize # # class AddSystemSettings < ActiveRecord::Migration # def up - # create_table system_settings: do |t| + # create_table :system_settings do |t| # t.string :name # t.string :label # t.text :value