cfe65a0d3e
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
9 lines
173 B
Ruby
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
|