mirror of
https://github.com/discourse/discourse.git
synced 2025-09-05 08:59:27 +08:00
5 lines
151 B
Ruby
5 lines
151 B
Ruby
class AddFancyTitleToTopic < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_column :topics, :fancy_title, :string, limit: 400, null: true
|
|
end
|
|
end
|