feat: initial page rendering; db stuff

This commit is contained in:
Jef Roosens 2024-12-28 11:44:56 +01:00
parent a410e4f9ec
commit 08f6faef52
No known key found for this signature in database
GPG key ID: 21FD3D77D56BAF49
7 changed files with 692 additions and 23 deletions

View file

@ -0,0 +1,6 @@
create table plants (
id integer primary key,
name text not null,
species text not null,
description text
);