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: 58d7664b8c058c2f4aa656d029f9edf9ba169350 (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
  end
end