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

tech.aroma.sql.ddl.credentials_ddl.sql Maven / Gradle / Ivy

---------------------------------------
-- DDL FOR AROMA CREDENTIALS
--
-- Used to store encrypted user passwords.
---------------------------------------

CREATE TABLE IF NOT EXISTS Credentials
(
    user_id            UUID,
    encrypted_password TEXT,
    time_created       TIMESTAMPTZ DEFAULT now(),

    PRIMARY KEY (user_id)
)
;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy