2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
class AddExtensionToTopicLinks < ActiveRecord::Migration[4.2]
|
2017-06-09 07:56:18 -04:00
|
|
|
def change
|
2017-07-03 13:06:54 -04:00
|
|
|
add_column :topic_links, :extension, :string, limit: 10
|
2017-06-20 07:01:31 -04:00
|
|
|
add_index :topic_links, :extension
|
2017-06-09 07:56:18 -04:00
|
|
|
end
|
|
|
|
end
|