Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bogdan/492083 to your computer and use it in GitHub Desktop.
Save bogdan/492083 to your computer and use it in GitHub Desktop.
class RenameAlbumsToAudios < ActiveRecord::Migration
def self.up
rename_table :albums, :audios
end
def self.down
rename_table :audios, :albums
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment