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

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

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

  def change
    add_column :namespace_limits, :temporary_storage_increase_ends_on, :date, null: true
  end
end