discourse/db/migrate/20150924022040_add_fancy_title_to_topic.rb
2016-03-31 17:40:54 -04:00

6 lines
146 B
Ruby

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