summaryrefslogtreecommitdiff
path: root/db/migrate/20210730101609_create_analytics_cycle_analytics_stage_event_hashes.rb
blob: ad517fbbff096a429c230e3e5956d8bcd466aaaa (plain)
1
2
3
4
5
6
7
8
9
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