debian-mirror-gitlab/db/migrate/20201006014605_add_automatic_purchased_storage_allocation_to_application_settings.rb

10 lines
288 B
Ruby
Raw Normal View History

2021-01-03 14:25:43 +05:30
# 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