feat: initial page rendering; db stuff
This commit is contained in:
parent
a410e4f9ec
commit
08f6faef52
7 changed files with 692 additions and 23 deletions
6
src/migrations/001_plants.sql
Normal file
6
src/migrations/001_plants.sql
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
create table plants (
|
||||
id integer primary key,
|
||||
name text not null,
|
||||
species text not null,
|
||||
description text
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue