discourse/db/migrate/20131118173159_rename_best_of_to_summary.rb

6 lines
136 B
Ruby
Raw Normal View History

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