discourse/db/migrate/20150924022040_add_fancy_title_to_topic.rb
Sam ffb8cb8cac FEATURE: remove dependency of Redcarpet
PERF: cache fancy_title in topics table

New pure ruby implementation is far more flexible and easier to amend.
2015-09-24 13:37:53 +10:00

6 lines
146 B
Ruby

class AddFancyTitleToTopic < ActiveRecord::Migration
def change
add_column :topics, :fancy_title, :string, limit: 400, null: true
end
end