summaryrefslogtreecommitdiff
path: root/db/migrate/20210730101609_create_analytics_cycle_analytics_stage_event_hashes.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20210730101609_create_analytics_cycle_analytics_stage_event_hashes.rb')
-rw-r--r--db/migrate/20210730101609_create_analytics_cycle_analytics_stage_event_hashes.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/db/migrate/20210730101609_create_analytics_cycle_analytics_stage_event_hashes.rb b/db/migrate/20210730101609_create_analytics_cycle_analytics_stage_event_hashes.rb
new file mode 100644
index 00000000000..ad517fbbff0
--- /dev/null
+++ b/db/migrate/20210730101609_create_analytics_cycle_analytics_stage_event_hashes.rb
@@ -0,0 +1,10 @@
+# frozen_string_literal: true
+
+class CreateAnalyticsCycleAnalyticsStageEventHashes < ActiveRecord::Migration[6.1]
+ def change
+ create_table :analytics_cycle_analytics_stage_event_hashes do |t|
+ t.binary :hash_sha256
+ t.index :hash_sha256, unique: true, name: 'index_cycle_analytics_stage_event_hashes_on_hash_sha_256'
+ end
+ end
+end