redmine/db/migrate/20170207050700_add_index_on_disk_filename_to_attachments.rb

6 lines
134 B
Ruby
Raw Normal View History

class AddIndexOnDiskFilenameToAttachments < ActiveRecord::Migration
def change
add_index :attachments, :disk_filename
end
end