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

This commit is contained in:
2024-09-06 17:56:01 +02:00
parent e9adc4f1bf
commit 018d72f603
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,
}
}