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