summaryrefslogtreecommitdiff
path: root/db/migrate/20221012033107_add_password_last_changed_at_to_user_details.rb
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