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