summaryrefslogtreecommitdiff
path: root/db/migrate/20220518183504_create_ssh_signatures.rb
blob: 6708d3f295c9dab82b92adb127697f7fd5ef974f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class CreateSshSignatures < Gitlab::Database::Migration[2.0]
  def change
    create_table :ssh_signatures do |t|
      t.timestamps_with_timezone null: false
      t.bigint :project_id, null: false, index: true
      t.bigint :key_id, null: false, index: true
      t.integer :verification_status, default: 0, null: false, limit: 2
      t.binary :commit_sha, null: false, index: { unique: true }
    end
  end
end