feat: add a project model

This commit is contained in:
Matouš Volf
2024-08-17 00:23:05 +02:00
parent cb68d5dd0d
commit 6b13e56840
5 changed files with 34 additions and 0 deletions

8
src/schema/mod.rs Normal file
View File

@ -0,0 +1,8 @@
// @generated automatically by Diesel CLI.
diesel::table! {
projects (id) {
id -> Int4,
title -> Text,
}
}