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

20151109100728_add_max_artifacts_size_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: 25106ace7e92fc5709059d2ba93f021945fee593 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddMaxArtifactsSizeToApplicationSettings < ActiveRecord::Migration
  def change
    add_column :application_settings, :max_artifacts_size, :integer, default: 100, null: false
  end
end