fix(migration): use string for todoist project note id
This commit is contained in:
parent
66afe52afb
commit
27984157c1
@ -134,10 +134,9 @@ type note struct {
|
|||||||
type projectNote struct {
|
type projectNote struct {
|
||||||
Content string `json:"content"`
|
Content string `json:"content"`
|
||||||
FileAttachment *fileAttachment `json:"file_attachment"`
|
FileAttachment *fileAttachment `json:"file_attachment"`
|
||||||
ID int64 `json:"id"`
|
ID string `json:"id"`
|
||||||
Posted time.Time `json:"posted"`
|
Posted time.Time `json:"posted"`
|
||||||
ProjectID string `json:"project_id"`
|
ProjectID string `json:"project_id"`
|
||||||
UidsToNotify []int64 `json:"uids_to_notify"`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type reminder struct {
|
type reminder struct {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user