Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20190225152525_add_auto_dev_ops_enabled_to_namespaces.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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