36 lines
1 KiB
Ruby
36 lines
1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateGroupDeployKeys < ActiveRecord::Migration[6.0]
|
|
include Gitlab::Database::MigrationHelpers
|
|
DOWNTIME = false
|
|
|
|
disable_ddl_transaction!
|
|
|
|
def up
|
|
unless table_exists?(:group_deploy_keys)
|
|
with_lock_retries do
|
|
create_table :group_deploy_keys do |t|
|
|
t.references :user, foreign_key: { on_delete: :restrict }, index: true
|
|
t.timestamps_with_timezone
|
|
t.datetime_with_timezone :last_used_at
|
|
t.datetime_with_timezone :expires_at
|
|
t.text :key, null: false, unique: true
|
|
t.text :title
|
|
t.text :fingerprint, null: false, unique: true
|
|
t.binary :fingerprint_sha256
|
|
|
|
t.index :fingerprint, unique: true
|
|
t.index :fingerprint_sha256
|
|
end
|
|
end
|
|
end
|
|
|
|
add_text_limit(:group_deploy_keys, :key, 4096)
|
|
add_text_limit(:group_deploy_keys, :title, 255)
|
|
add_text_limit(:group_deploy_keys, :fingerprint, 255)
|
|
end
|
|
|
|
def down
|
|
drop_table :group_deploy_keys
|
|
end
|
|
end
|