method

rename_table

Importance_0
v7.2.3 - Show latest stable - 0 notes - Class: V7_0
rename_table(table_name, new_name, **options) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/migration/compatibility.rb, line 120
        def rename_table(table_name, new_name, **options)
          options[:_uses_legacy_table_name] = true
          options[:_uses_legacy_index_name] = true
          super
        end
Register or log in to add new notes.