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