2019-02-15 15:39:39 +05:30
|
|
|
class CreateGpgKeys < ActiveRecord::Migration[4.2]
|
2018-12-05 23:21:45 +05:30
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
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
|
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
t.index :primary_keyid, unique: true, length: mysql_compatible_index_length
|
|
|
|
t.index :fingerprint, unique: true, length: mysql_compatible_index_length
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|