sqlconf.empty.02-create.sql Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bootstrap-maven-plugin Show documentation
Show all versions of bootstrap-maven-plugin Show documentation
The Bootstrap Maven plugin is responsible for bootstrapping a project out of template packs
CREATE SEQUENCE hibernate_sequence START WITH 1000;
CREATE TABLE USER (
id int not null IDENTITY,
username varchar(100) not null,
password varchar(100) not null,
is_enabled bool not null default true,
version int default 0,
constraint user_unique_1 unique (username),
primary key (id)
);
© 2015 - 2024 Weber Informatics LLC | Privacy Policy