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

20190911115109_add_namespaces_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: c14dfa74a5a11d7be2ce2666a2c1c9f74b04cdea (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

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