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

20221012033107_add_password_last_changed_at_to_user_details.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db2f411ab928c5df8e271c3a7132682bc804ccba (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddPasswordLastChangedAtToUserDetails < Gitlab::Database::Migration[2.0]
  enable_lock_retries!

  def change
    add_column :user_details, :password_last_changed_at, :datetime_with_timezone, comment: 'JiHu-specific column'
  end
end