Retrospring/db/migrate/20141130180152_rename_colum...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
250 B
Ruby
Raw Normal View History

class RenameColumnsInAnswers < ActiveRecord::Migration[4.2]
2014-11-30 10:43:22 -08:00
def change
rename_column :answers, :comments, :comment_count
remove_column :answers, :likes
change_column :answers, :comment_count, :integer, default: 0, null: false
end
end