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

20190911115207_add_projects_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: cd4574ad9c86fe5bd9232fae57b96542ffd3bdef (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

  def change
    add_column :projects, :max_artifacts_size, :integer # rubocop:disable Migration/AddColumnsToWideTables
  end
end