Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20140416185734_index_on_current_sign_in_at.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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