feat: add times of creation and update to the project model

This commit is contained in:
Matouš Volf
2024-09-06 17:49:12 +02:00
parent 32a0a4072a
commit 32e25a5f8b
4 changed files with 25 additions and 0 deletions

View File

@ -4,6 +4,8 @@ diesel::table! {
projects (id) {
id -> Int4,
title -> Text,
created_at -> Timestamp,
updated_at -> Timestamp,
}
}