Gerüst mit Form-Auth

This commit is contained in:
mbremer
2021-07-02 21:39:28 +02:00
commit 825363e491
30 changed files with 1528 additions and 0 deletions

View 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
);