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

20190114172110_add_domain_to_cluster.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d8f10af9cad3102af3cc960c959cd244700cb109 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddDomainToCluster < ActiveRecord::Migration[5.0]
  DOWNTIME = false

  def change
    add_column :clusters, :domain, :string # rubocop:disable Migration/AddLimitToStringColumns
  end
end