feat: added event form & POST route

This commit is contained in:
Jef Roosens 2025-01-10 13:00:36 +01:00
parent 3add93bdb2
commit adef5c1fd5
Signed by: Jef Roosens
GPG key ID: 21FD3D77D56BAF49
13 changed files with 123 additions and 16 deletions

View file

@ -4,6 +4,6 @@ create table events (
references plants (id)
on delete cascade,
event_type text not null,
time text not null,
date text not null,
description text not null
);