summaryrefslogtreecommitdiff
path: root/db/migrate/20140416185734_index_on_current_sign_in_at.rb
blob: 8c620b545bd5c2e758a4df25c2e94127c412c7a4 (plain)
1
2
3
4
5
6
# rubocop:disable all
class IndexOnCurrentSignInAt < ActiveRecord::Migration
  def change
    add_index :users, :current_sign_in_at
  end
end