feat: add diesel setup to project

This commit is contained in:
Jef Roosens 2025-01-13 13:06:36 +01:00
parent faeebf8376
commit 18a321853a
Signed by: Jef Roosens
GPG key ID: 21FD3D77D56BAF49
14 changed files with 203 additions and 1 deletions

View file

@ -0,0 +1 @@
drop table comments;

View file

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