gitlab-org--gitlab-foss/db/migrate/20190225152525_add_auto_dev...

10 lines
254 B
Ruby

# frozen_string_literal: true
class AddAutoDevOpsEnabledToNamespaces < ActiveRecord::Migration[5.0]
DOWNTIME = false
def change
add_column :namespaces, :auto_devops_enabled, :boolean # rubocop:disable Migration/AddColumnsToWideTables
end
end