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

20200728175710_add_enforce_namespace_storage_limit_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: adbc86ec6219744b2f3cc0a16025194d620e17c5 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddEnforceNamespaceStorageLimitToApplicationSettings < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :application_settings, :enforce_namespace_storage_limit, :boolean, default: false, null: false
  end
end