Files
discourse/db/migrate/20130424015746_add_slug_to_topics.rb
2017-09-25 13:48:58 +08:00

6 lines
115 B
Ruby

class AddSlugToTopics < ActiveRecord::Migration[4.2]
def change
add_column :topics, :slug, :string
end
end