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/20201021085007_create_analytics_devops_adoption_segments.rb')
-rw-r--r--db/migrate/20201021085007_create_analytics_devops_adoption_segments.rb24
1 files changed, 0 insertions, 24 deletions
diff --git a/db/migrate/20201021085007_create_analytics_devops_adoption_segments.rb b/db/migrate/20201021085007_create_analytics_devops_adoption_segments.rb
deleted file mode 100644
index 3e322675ba6..00000000000
--- a/db/migrate/20201021085007_create_analytics_devops_adoption_segments.rb
+++ /dev/null
@@ -1,24 +0,0 @@
-# frozen_string_literal: true
-
-class CreateAnalyticsDevopsAdoptionSegments < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- create_table :analytics_devops_adoption_segments, if_not_exists: true do |t|
- t.text :name, null: false, index: { unique: true }
- t.datetime_with_timezone :last_recorded_at
-
- t.timestamps_with_timezone
- end
-
- add_text_limit :analytics_devops_adoption_segments, :name, 255
- end
-
- def down
- drop_table :analytics_devops_adoption_segments
- end
-end