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

20160530150109_add_container_registry_token_expire_delay_to_application_settings.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d811fd5271e27784095f8c91234fc0cf6c4e922a (plain)
1
2
3
4
5
6
7
8
9
10
# rubocop:disable all
# This is ONLINE migration

class AddContainerRegistryTokenExpireDelayToApplicationSettings < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  def change
    add_column :application_settings, :container_registry_token_expire_delay, :integer, default: 5
  end
end