debian-mirror-gitlab/db/migrate/20221012033107_add_password_last_changed_at_to_user_details.rb
2022-11-25 23:54:43 +05:30

10 lines
271 B
Ruby

# 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