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

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

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

  def change
    add_column :projects, :max_pages_size, :integer
  end
end