diff options
author | Mo Tarbin <mhed.t91@gmail.com> | 2024-07-07 00:26:08 -0400 |
---|---|---|
committer | Mo Tarbin <mhed.t91@gmail.com> | 2024-07-07 00:26:08 -0400 |
commit | 010db330a46ad32daf30400283971cd4e9835e1d (patch) | |
tree | 83d169e5a73345e8ce2492568366432997a1199b /internal/chore/model | |
parent | c92cdb427d050456769f520cdcc4ee10db895ad9 (diff) | |
download | donetick-010db330a46ad32daf30400283971cd4e9835e1d.tar.gz donetick-010db330a46ad32daf30400283971cd4e9835e1d.tar.bz2 donetick-010db330a46ad32daf30400283971cd4e9835e1d.zip |
chore: Update chore detail query to include notes in result
Diffstat (limited to '')
-rw-r--r-- | internal/chore/model/model.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/chore/model/model.go b/internal/chore/model/model.go index 2e7ee90..90f6c29 100644 --- a/internal/chore/model/model.go +++ b/internal/chore/model/model.go @@ -80,5 +80,6 @@ type ChoreDetail struct { LastCompletedDate *time.Time `json:"lastCompletedDate" gorm:"column:last_completed_date"` LastCompletedBy *int `json:"lastCompletedBy" gorm:"column:last_completed_by"` TotalCompletedCount int `json:"totalCompletedCount" gorm:"column:total_completed"` + Notes *string `json:"notes" gorm:"column:notes"` CreatedBy int `json:"createdBy" gorm:"column:created_by"` } |