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

sql.migration.V20150421185400__CreateManagers.sql Maven / Gradle / Ivy

The newest version!
CREATE TABLE managers (
  id int NOT NULL PRIMARY KEY,
  name varchar(256) not null,
  last_name varchar(256) not null,
  domain varchar(256) not null,
  auth_token varchar(256) not null,
  email varchar(256) not null
);
CREATE UNIQUE INDEX manager_email_idx ON managers (email);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy