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

20130809124851_add_permission_check_to_user.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c26157904c7348cb193810a61bc5f7e6fa30a2a9 (plain)
1
2
3
4
5
class AddPermissionCheckToUser < ActiveRecord::Migration
  def change
    add_column :users, :last_credential_check_at, :datetime
  end
end