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

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

class AddRunnerTokenExpirationIntervalSettingsToProjectSettings < Gitlab::Database::Migration[1.0]
  enable_lock_retries!

  def change
    add_column :project_ci_cd_settings, :runner_token_expiration_interval, :integer
  end
end