debian-mirror-gitlab/db/migrate/20191112212815_create_web_authn_table.rb
2020-08-09 17:44:08 +05:30

27 lines
849 B
Ruby

# frozen_string_literal: true
class CreateWebAuthnTable < ActiveRecord::Migration[6.0]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
# disable_ddl_transaction!
# rubocop:disable Migration/AddLimitToTextColumns
# limits are added in subsequent migration
def change
create_table :webauthn_registrations do |t|
t.bigint :user_id, null: false, index: true
t.bigint :counter, default: 0, null: false
t.timestamps_with_timezone
t.text :credential_xid, null: false, index: { unique: true }
t.text :name, null: false
# The length of the public key is determined by the device
# and not specified. Thus we can't set a limit
t.text :public_key, null: false # rubocop:disable Migration/AddLimitToTextColumns
end
end
# rubocop:enable Migration/AddLimitToTextColumns
end