This commit is contained in:
nora 2021-07-02 13:20:11 +02:00
parent cc8646baff
commit 90ed6e1533
13 changed files with 224 additions and 711 deletions

8
src/schema.rs Normal file
View file

@ -0,0 +1,8 @@
table! {
posts (id) {
id -> Int4,
author -> Varchar,
title -> Varchar,
body -> Varchar,
}
}