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

sql.migration.V20160112161110__BinaryPasswordHashes.sql Maven / Gradle / Ivy

DROP TABLE user_passwords;
CREATE TABLE user_passwords (
  user_id INT NOT NULL,
  hash BYTEA NOT NULL,
  salt BYTEA NOT NULL,
  PRIMARY KEY (user_id)
);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy