a6d4e5e532
0968ee3456
b3fdf9c596
1
2 3 4 5 6 7 8
9
class RenameThings < ActiveRecord::Migration::Current def self.up rename_table "things", "awesome_things" end def self.down rename_table "awesome_things", "things" end end