gitlab-org--gitlab-foss/db/migrate/20201006014605_add_automati...

10 lines
288 B
Ruby

# frozen_string_literal: true
class AddAutomaticPurchasedStorageAllocationToApplicationSettings < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
add_column :application_settings, :automatic_purchased_storage_allocation, :boolean, default: false, null: false
end
end