gitlab-org--gitlab-foss/db/migrate/20160530150109_add_containe...

11 lines
308 B
Ruby
Raw Normal View History

# rubocop:disable all
2016-05-31 11:49:48 +00:00
# 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