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

20151215132013_add_pages_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: e7fb73190e83fba73a04e4d43468f3fe21553f91 (plain)
1
2
3
4
5
class AddPagesSizeToApplicationSettings < ActiveRecord::Migration
  def up
    add_column :application_settings, :max_pages_size, :integer, default: 100, null: false
  end
end