gitlab-org--gitlab-foss/db/migrate/20210330015805_add_cloud_to...

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