2017-02-22 06:49:17 -05:00
|
|
|
class CreateGpgKeys < ActiveRecord::Migration
|
|
|
|
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
|
|
|
|
|
2017-07-25 14:31:34 -04:00
|
|
|
t.index :primary_keyid, unique: true, length: Gitlab::Database.mysql? ? 20 : nil
|
|
|
|
t.index :fingerprint, unique: true, length: Gitlab::Database.mysql? ? 20 : nil
|
2017-02-22 06:49:17 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|