debian-mirror-gitlab/db/migrate/20210330015805_add_cloud_to_licenses.rb
2021-04-29 21:17:54 +05:30

10 lines
189 B
Ruby

# frozen_string_literal: true
class AddCloudToLicenses < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
add_column :licenses, :cloud, :boolean, default: false
end
end