summaryrefslogtreecommitdiffstats
path: root/db/migrate/20170207050700_add_index_on_disk_filename_to_attachments.rb
blob: 3f2eaee8ea1936217e7a7683db259ca7d7cf041d (plain)
1
2
3
4
5
class AddIndexOnDiskFilenameToAttachments < ActiveRecord::Migration[4.2]
  def change
    add_index :attachments, :disk_filename
  end
end