Sha256: 59af287397153d67d69fce9b04323d3f49215e02bb4a7799f48e6d8f2ec03307
Contents?: true
Size: 470 Bytes
Versions: 15
Compression:
Stored size: 470 Bytes
Contents
# Used by the webauthn feature create_table :account_webauthn_user_ids do foreign_key :id, :accounts, primary_key: true, type: :Bignum String :webauthn_id, null: false end create_table :account_webauthn_keys do foreign_key :account_id, :accounts, type: :Bignum String :webauthn_id String :public_key, null: false Integer :sign_count, null: false Time :last_use, null: false, default: Sequel::CURRENT_TIMESTAMP primary_key [:account_id, :webauthn_id] end
Version data entries
15 entries across 15 versions & 1 rubygems