refactor: clean up db stuff; start comments stuff

This commit is contained in:
Jef Roosens 2024-12-29 19:53:06 +01:00
parent f980115d45
commit fed9c01370
No known key found for this signature in database
GPG key ID: 21FD3D77D56BAF49
9 changed files with 174 additions and 118 deletions

View file

@ -0,0 +1,5 @@
create table comments (
id integer primary key,
plant_id integer references plants (id),
comment text not null
);