view db/migrate/20130512032335_add_index_to_pastes_secret.rb @ 477:7a20b4906267

Update gems
author nanaya <me@nanaya.pro>
date Sat, 10 Oct 2020 18:13:56 +0900
parents 4608d12ebe03
children
line wrap: on
line source

# Speed up lookup.
class AddIndexToPastesSecret < ActiveRecord::Migration[4.2]
  def change
    add_index :pastes, :secret
  end
end