Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20170222111732_create_gpg_keys.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 012e8ef5854883ce0140f48a3ba3dc8c88933669 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class CreateGpgKeys < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    create_table :gpg_keys do |t|
      t.timestamps_with_timezone null: false

      t.references :user, index: true, foreign_key: { on_delete: :cascade }

      t.binary :primary_keyid
      t.binary :fingerprint

      t.text :key

      t.index :primary_keyid, unique: true, length: mysql_compatible_index_length
      t.index :fingerprint, unique: true, length: mysql_compatible_index_length
    end
  end
end