From 9c9d4948e428a226a19aa92c17fa6ac5833c2fb8 Mon Sep 17 00:00:00 2001 From: Yves Senn Date: Tue, 12 Nov 2013 15:56:17 +0100 Subject: `remove_column` does not take a type argument. [ci skip]. Closes #12864 --- guides/source/migrations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/source/migrations.md b/guides/source/migrations.md index 71a177bca7..93c7314779 100644 --- a/guides/source/migrations.md +++ b/guides/source/migrations.md @@ -179,7 +179,7 @@ generates ```ruby class RemovePartNumberFromProducts < ActiveRecord::Migration def change - remove_column :products, :part_number, :string + remove_column :products, :part_number end end ``` -- cgit v1.2.3