feat: migrated all models to diesel

This commit is contained in:
Jef Roosens 2025-01-16 13:01:27 +01:00
parent daead2116b
commit 7b52b803c8
Signed by: Jef Roosens
GPG key ID: 02D4C0997E74717B
7 changed files with 109 additions and 12 deletions

View file

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