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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20210121100038_add_devops_adoption_group_segment.rb')
-rw-r--r--db/migrate/20210121100038_add_devops_adoption_group_segment.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/db/migrate/20210121100038_add_devops_adoption_group_segment.rb b/db/migrate/20210121100038_add_devops_adoption_group_segment.rb
new file mode 100644
index 00000000000..619657e7f56
--- /dev/null
+++ b/db/migrate/20210121100038_add_devops_adoption_group_segment.rb
@@ -0,0 +1,18 @@
+# frozen_string_literal: true
+
+class AddDevopsAdoptionGroupSegment < ActiveRecord::Migration[6.0]
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ disable_ddl_transaction!
+
+ def up
+ add_column :analytics_devops_adoption_segments, :namespace_id, :integer, if_not_exists: true
+ add_concurrent_index :analytics_devops_adoption_segments, :namespace_id, unique: true
+ end
+
+ def down
+ remove_column :analytics_devops_adoption_segments, :namespace_id
+ end
+end