gitlab-org--gitlab-foss/db/migrate/20170222111732_create_gpg_k...

22 lines
545 B
Ruby
Raw Normal View History

class CreateGpgKeys < ActiveRecord::Migration[4.2]
include Gitlab::Database::MigrationHelpers
2017-02-22 11:49:17 +00:00
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
2017-02-22 11:49:17 +00:00
t.text :key
t.index :primary_keyid, unique: true, length: mysql_compatible_index_length
t.index :fingerprint, unique: true, length: mysql_compatible_index_length
2017-02-22 11:49:17 +00:00
end
end
end