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: 93e7a84fb025973c450b166b6529a9714e896a33 (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
  end
end