gitlab-org--gitlab-foss/db/migrate/20190114172110_add_domain_to_cluster.rb
Mayra Cabrera cfe65a0d3e Add domain field into Clusters::Cluster
This is the 1st step for moving Auto DevOps domain into cluster
settings, whether is project or group.

Related to https://gitlab.com/gitlab-org/gitlab-ce/issues/52363
2019-01-22 11:30:43 -06:00

9 lines
173 B
Ruby

# frozen_string_literal: true
class AddDomainToCluster < ActiveRecord::Migration[5.0]
DOWNTIME = false
def change
add_column :clusters, :domain, :string
end
end