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

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

View File

@ -16,6 +16,8 @@ diesel::table! {
deadline -> Nullable<Date>,
category -> Jsonb,
project_id -> Nullable<Int4>,
created_at -> Timestamp,
updated_at -> Timestamp,
}
}