summaryrefslogtreecommitdiff
path: root/db/migrate/20201117054609_add_cloud_license_enabled_to_settings.rb
blob: 4488aa376a178cfa458a7f32e272787aa6f70879 (plain)
1
2
3
4
5
6
7
8
9
# 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