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

20130613165816_add_password_expires_at_to_users.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 61c301e38ade72fe0da497eccd56c5475ca40b6d (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddPasswordExpiresAtToUsers < ActiveRecord::Migration[4.2]
  def change
    add_column :users, :password_expires_at, :datetime
  end
end