diff --git a/activerecord/lib/active_record/migration.rb b/activerecord/lib/active_record/migration.rb
index 47a6ed7086..d3581e2ccc 100644
--- a/activerecord/lib/active_record/migration.rb
+++ b/activerecord/lib/active_record/migration.rb
@@ -61,6 +61,7 @@ module ActiveRecord
# that can then add columns to it, following the same format as add_column. See example above. The options hash is for
# fragments like "DEFAULT CHARSET=UTF-8" that are appended to the create table definition.
# * drop_table(name): Drops the table called +name+.
+ # * rename_table(old_name, new_name): Renames the table called +old_name+ to +new_name+.
# * add_column(table_name, column_name, type, options): Adds a new column to the table called +table_name+
# named +column_name+ specified to be one of the following types:
# :string, :text, :integer, :float, :datetime, :timestamp, :time, :date, :binary, :boolean. A default value can be specified