2017-02-22 06:49:17 -05:00
|
|
|
class CreateGpgKeys < ActiveRecord::Migration
|
2018-09-21 06:23:29 -04:00
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
2017-02-22 06:49:17 -05:00
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def change
|
|
|
|
create_table :gpg_keys do |t|
|
2017-07-15 09:25:21 -04:00
|
|
|
t.timestamps_with_timezone null: false
|
|
|
|
|
2017-07-20 10:33:44 -04:00
|
|
|
t.references :user, index: true, foreign_key: { on_delete: :cascade }
|
2017-07-15 09:25:21 -04:00
|
|
|
|
2017-07-20 16:07:04 -04:00
|
|
|
t.binary :primary_keyid
|
|
|
|
t.binary :fingerprint
|
2017-07-15 09:25:21 -04:00
|
|
|
|
2017-02-22 06:49:17 -05:00
|
|
|
t.text :key
|
|
|
|
|
2018-09-21 06:23:29 -04:00
|
|
|
t.index :primary_keyid, unique: true, length: mysql_compatible_index_length
|
|
|
|
t.index :fingerprint, unique: true, length: mysql_compatible_index_length
|
2017-02-22 06:49:17 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|