Skip to content
Snippets Groups Projects

Incorporates Kubernetes Namespace into Cluster's flow

Merged Thong Kuah requested to merge 51716-create-kube-namespace into master
2 files
+ 12
0
Compare changes
  • Side-by-side
  • Inline
Files
2
 
# frozen_string_literal: true
 
 
class AddNamespaceToClusterProjects < ActiveRecord::Migration
 
include Gitlab::Database::MigrationHelpers
 
 
DOWNTIME = false
 
 
def change
 
add_column(:cluster_projects, :namespace, :string, null: true)
 
end
 
end
Loading