class RenameThings

Public Class Methods

down() click to toggle source
# File activerecord/test/migrations/rename/2_rename_things.rb, line 8
def self.down
  rename_table "awesome_things", "things"
end
up() click to toggle source
# File activerecord/test/migrations/rename/2_rename_things.rb, line 4
def self.up
  rename_table "things", "awesome_things"
end