diff --git a/activerecord/lib/active_record/migration.rb b/activerecord/lib/active_record/migration.rb
index b23bb62001..b273c33e50 100644
--- a/activerecord/lib/active_record/migration.rb
+++ b/activerecord/lib/active_record/migration.rb
@@ -101,7 +101,7 @@ module ActiveRecord
# named +column_name+ specified to be one of the following types:
# :string, :text, :integer, :float,
# :decimal, :datetime, :timestamp, :time,
- # :date, :binary, :boolean and :references. A default value can be
+ # :date, :binary, :boolean. A default value can be
# specified by passing an +options+ hash like { :default => 11 }.
# Other options include :limit and :null (e.g.
# { :limit => 50, :null => false }) -- see