discourse/db/migrate/20131118173159_rename_best_of_to_summary.rb

6 lines
131 B
Ruby
Raw Normal View History

2013-11-19 01:48:26 +08:00
class RenameBestOfToSummary < ActiveRecord::Migration
def change
rename_column :topics, :has_best_of, :has_summary
end
end