summaryrefslogtreecommitdiff
path: root/db/migrate/20210330015805_add_cloud_to_licenses.rb
blob: d0c7112d0b0bbf897f295105cc1fde009cc8d6ec (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

  def change
    add_column :licenses, :cloud, :boolean, default: false
  end
end