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: 3479c8e64d015209582639749271400e0ab873a9 (plain)
1
2
3
4
5
class AddPasswordExpiresAtToUsers < ActiveRecord::Migration
  def change
    add_column :users, :password_expires_at, :datetime
  end
end