summaryrefslogtreecommitdiff
path: root/db/migrate/20201111100136_create_analytics_devops_adoption_snapshots.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20201111100136_create_analytics_devops_adoption_snapshots.rb')
-rw-r--r--db/migrate/20201111100136_create_analytics_devops_adoption_snapshots.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/db/migrate/20201111100136_create_analytics_devops_adoption_snapshots.rb b/db/migrate/20201111100136_create_analytics_devops_adoption_snapshots.rb
new file mode 100644
index 00000000000..ee029d17c94
--- /dev/null
+++ b/db/migrate/20201111100136_create_analytics_devops_adoption_snapshots.rb
@@ -0,0 +1,21 @@
+# frozen_string_literal: true
+
+class CreateAnalyticsDevopsAdoptionSnapshots < ActiveRecord::Migration[6.0]
+ DOWNTIME = false
+
+ def change
+ create_table :analytics_devops_adoption_snapshots do |t|
+ t.references :segment, index: false, null: false, foreign_key: { to_table: :analytics_devops_adoption_segments, on_delete: :cascade }
+ t.datetime_with_timezone :recorded_at, null: false
+ t.boolean :issue_opened, null: false
+ t.boolean :merge_request_opened, null: false
+ t.boolean :merge_request_approved, null: false
+ t.boolean :runner_configured, null: false
+ t.boolean :pipeline_succeeded, null: false
+ t.boolean :deploy_succeeded, null: false
+ t.boolean :security_scan_succeeded, null: false
+
+ t.index [:segment_id, :recorded_at], name: 'index_on_snapshots_segment_id_recorded_at'
+ end
+ end
+end