Not found
The exact documentation you were looking for could not be found. Here is the best guess.
rename_table(table_name, new_name)
public
Renames a table.
Example
rename_table('octopuses', 'octopi')
Show source
def rename_table(table_name, new_name)
raise NotImplementedError, "rename_table is not implemented"
end