debian-mirror-gitlab/db/migrate/20201117054609_add_cloud_license_enabled_to_settings.rb

10 lines
244 B
Ruby
Raw Normal View History

2021-02-22 17:27:13 +05:30
# frozen_string_literal: true
class AddCloudLicenseEnabledToSettings < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
add_column :application_settings, :cloud_license_enabled, :boolean, null: false, default: false
end
end