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

sql.migration.V20150519163700__RecreateUserEmails.sql Maven / Gradle / Ivy

DROP TABLE user_emails;

CREATE TABLE user_emails (
       id int NOT NULL,
       user_id int NOT NULL,
       email varchar(255) NOT NULL,
       access_salt varchar(255) NOT NULL,
       title varchar(255) NOT NULL,
       PRIMARY KEY (user_id, id)
);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy