This commit is contained in:
konrad 2018-09-22 11:06:39 +02:00
parent 6519c62ade
commit 06a4ede4a8
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ func (i *ListTask) Create(doer *User) (err error) {
i.CreatedByID = user.ID
i.CreatedBy = user
_, err = x.Cols("text","description","done","due_date_unix","reminder_unix","created_by_id","list_id","created","updated").Insert(i)
_, err = x.Cols("text", "description", "done", "due_date_unix", "reminder_unix", "created_by_id", "list_id", "created", "updated").Insert(i)
return err
}