Cleaned up directory, created documentation and readme

This commit is contained in:
Leonard Lorenz 2020-10-23 00:20:26 +02:00
parent 8a70db9b42
commit d6aee1e99d
16 changed files with 71 additions and 2 deletions

9
site/src/schema.rs Normal file
View file

@ -0,0 +1,9 @@
table! {
posts (id) {
id -> Nullable<Integer>,
title -> Text,
body -> Text,
published -> Bool,
publish_date -> Timestamp,
}
}