summaryrefslogtreecommitdiff
path: root/db/migrate/20220111154950_add_token_expires_at_to_ci_runners.rb
blob: b4d7c63d24b04fbd47f704ea49a7a2d6e02ce69b (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddTokenExpiresAtToCiRunners < Gitlab::Database::Migration[1.0]
  def change
    add_column :ci_runners, :token_expires_at, :datetime_with_timezone
  end
end