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: 01d8c0f043eb7f1c4987056d87b4f64b1581dea3 (plain)
1
2
3
4
5
class AddMaxArtifactsSizeToApplicationSettings < ActiveRecord::Migration
  def change
    add_column :application_settings, :max_artifacts_size, :integer, default: 100, null: false
  end
end