gitlab-org--gitlab-foss/db/migrate/20170613154149_create_gpg_signatures.rb
Alexis Reigel 8c8a9e6d3f merge migrations to 1 single create per table
also:

* reorder table columns
* no need for `add_concurrent_index`
* no need for explicit index removal on `#down`
2017-07-27 15:46:03 +02:00

22 lines
542 B
Ruby

class CreateGpgSignatures < ActiveRecord::Migration
DOWNTIME = false
def change
create_table :gpg_signatures do |t|
t.timestamps_with_timezone null: false
t.references :project, index: true, foreign_key: true
t.references :gpg_key, index: true, foreign_key: true
t.boolean :valid_signature
t.string :commit_sha
t.string :gpg_key_primary_keyid
t.string :gpg_key_user_name
t.string :gpg_key_user_email
t.index :commit_sha
t.index :gpg_key_primary_keyid
end
end
end