traffic warning forms

This commit is contained in:
mbremer
2021-10-23 21:21:50 +02:00
parent 773e8470b0
commit 5e2325f717
13 changed files with 214 additions and 87 deletions

View File

@@ -0,0 +1,10 @@
create table trafficwarningconfig (
id bigint not null primary key,
emailadress varchar not null,
address varchar not null,
timeaway time,
timeback time,
threshold integer not null,
active boolean not null,
user_id bigint unique not null references users
);