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

20220111154950_add_token_expires_at_to_ci_runners.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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