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