fix(migration): use string for todoist project note id

This commit is contained in:
kolaente 2023-11-03 12:06:23 +01:00
parent 66afe52afb
commit 27984157c1
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 2 deletions

View File

@ -134,10 +134,9 @@ type note struct {
type projectNote struct {
Content string `json:"content"`
FileAttachment *fileAttachment `json:"file_attachment"`
ID int64 `json:"id"`
ID string `json:"id"`
Posted time.Time `json:"posted"`
ProjectID string `json:"project_id"`
UidsToNotify []int64 `json:"uids_to_notify"`
}
type reminder struct {