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

tech.aroma.cql.credentials_tables.cql Maven / Gradle / Ivy

//Assumes the existence of a 'Aroma' Keyspace

/*
	Used to store encrypted User Passwords.
*/
CREATE TABLE IF NOT EXISTS Aroma.Credentials
(
	user_id uuid,
	encrypted_password text,
	time_created timestamp,

	PRIMARY KEY (user_id)
);




© 2015 - 2025 Weber Informatics LLC | Privacy Policy