mirror of
https://github.com/discourse/discourse.git
synced 2025-01-06 21:24:10 +08:00
6 lines
136 B
Ruby
6 lines
136 B
Ruby
class RenameBestOfToSummary < ActiveRecord::Migration[4.2]
|
|
def change
|
|
rename_column :topics, :has_best_of, :has_summary
|
|
end
|
|
end
|