Add migration fixes

This commit is contained in:
2020-10-09 16:06:31 +02:00
parent 011619d3c3
commit aea74bef27
8 changed files with 23 additions and 7 deletions

View File

@@ -6,5 +6,5 @@ type Washlist struct {
Id int `json:"id"`
Person string `json:"person"`
Date time.Time `json:"date"`
Washed string `json:"iswashed"`
Washed int `json:"iswashed"`
}