mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 18:19:52 +01:00
7 lines
250 B
Ruby
7 lines
250 B
Ruby
class RenameColumnsInAnswers < ActiveRecord::Migration[4.2]
|
|
def change
|
|
rename_column :answers, :comments, :comment_count
|
|
remove_column :answers, :likes
|
|
change_column :answers, :comment_count, :integer, default: 0, null: false
|
|
end
|
|
end
|