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: 0bf80ce154a151366967d45921bcebef5bcbe143 (plain)
1
2
3
4
5
class IndexOnCurrentSignInAt < ActiveRecord::Migration
  def change
    add_index :users, :current_sign_in_at
  end
end