summaryrefslogtreecommitdiff
path: root/db/migrate/20201120144823_create_tokens_with_iv.rb
blob: f8dc75513fb81e6a8699c6b8d02af02a4628bd30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

class CreateTokensWithIv < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    create_table :token_with_ivs do |t|
      t.binary :hashed_token, null: false
      t.binary :hashed_plaintext_token, null: false
      t.binary :iv, null: false

      t.index :hashed_token, name: 'index_token_with_ivs_on_hashed_token', unique: true, using: :btree
      t.index :hashed_plaintext_token, name: 'index_token_with_ivs_on_hashed_plaintext_token', unique: true, using: :btree
    end
  end
end