diff --git a/db/income.go b/db/income.go index 5109f17..56d4894 100644 --- a/db/income.go +++ b/db/income.go @@ -8,8 +8,9 @@ import ( type Income struct { gorm.Model - CardID uint - Card *Card - Value uint64 - Date time.Time + CardID uint + Card *Card + Value uint64 + Comment string + Date time.Time }