All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.security.user-credentials-schema-postgres.sql Maven / Gradle / Ivy

The newest version!
create table user_credentials
(
    credential_id                varchar(1000) not null,
    user_entity_user_id          varchar(1000) not null,
    public_key                   bytea         not null,
    signature_count              bigint,
    uv_initialized               boolean,
    backup_eligible              boolean       not null,
    authenticator_transports     varchar(1000),
    public_key_credential_type   varchar(100),
    backup_state                 boolean       not null,
    attestation_object           bytea,
    attestation_client_data_json bytea,
    created                      timestamp,
    last_used                    timestamp,
    label                        varchar(1000) not null,
    primary key (credential_id)
);




© 2015 - 2025 Weber Informatics LLC | Privacy Policy