Files
discourse/db/migrate/20130424015746_add_slug_to_topics.rb
T

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

8 lines
146 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddSlugToTopics < ActiveRecord::Migration[4.2]
2013-04-24 12:01:00 +10:00
def change
add_column :topics, :slug, :string
end
end