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

20190911115222_add_namespaces_max_artifacts_size.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 60c594c47a6cc7148663a16c45f522a6614622ad (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddNamespacesMaxArtifactsSize < ActiveRecord::Migration[5.2]
  DOWNTIME = false

  def change
    add_column :namespaces, :max_artifacts_size, :integer
  end
end