Files
discourse/db/migrate/20131118173159_rename_best_of_to_summary.rb
T

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

8 lines
167 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class RenameBestOfToSummary < ActiveRecord::Migration[4.2]
2013-11-18 12:48:26 -05:00
def change
rename_column :topics, :has_best_of, :has_summary
end
end