Sha256: 813315d8687ea859deb1cf01f5be3a40178538a88a16dcb2b48431184e306c70
Contents?: true
Size: 560 Bytes
Versions: 36
Compression:
Stored size: 560 Bytes
Contents
# Used by the webauthn feature create_table :<%= table_prefix %>_webauthn_user_ids do foreign_key :id, :<%= table_prefix.pluralize %>, primary_key: true, type: :Bignum String :webauthn_id, null: false end create_table :<%= table_prefix %>_webauthn_keys do foreign_key :<%= table_prefix %>_id, :<%= table_prefix.pluralize %>, 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 [:<%= table_prefix %>_id, :webauthn_id] end
Version data entries
36 entries across 36 versions & 2 rubygems