Gerüst mit Form-Auth
This commit is contained in:
14
src/main/resources/db/migration/V0001__initial.sql
Normal file
14
src/main/resources/db/migration/V0001__initial.sql
Normal file
@@ -0,0 +1,14 @@
|
||||
create sequence hibernate_sequence start 1;
|
||||
|
||||
create table users (
|
||||
id bigint not null primary key,
|
||||
username varchar not null unique,
|
||||
password varchar not null,
|
||||
role varchar not null
|
||||
);
|
||||
|
||||
create table kalendertag (
|
||||
id bigint not null primary key,
|
||||
date date not null unique,
|
||||
inoffice_id bigint not null references users
|
||||
);
|
||||
Reference in New Issue
Block a user