Add file extension column to TopicLinks.

This commit is contained in:
Jakub Macina 2017-06-09 13:56:18 +02:00
parent 5ff986129a
commit 4c22f3a0e2
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
class AddExtensionToTopicLinks < ActiveRecord::Migration
def change
add_column :topic_links, :extension, :string, limit: 5
end
end