Skip to content

Commit

Permalink
Change Price from float to string to reflect db column type
Browse files Browse the repository at this point in the history
  • Loading branch information
irees committed Dec 20, 2024
1 parent d7af8d9 commit a68a4e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/plus/fare_rider_category.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
type FareRiderCategory struct {
FareID string `csv:"fare_id"`
RiderCategoryID int `csv:"rider_category_id"`
Price float64 `csv:"price"`
Price string `csv:"price"`
ExpirationDate tt.Date `csv:"expiration_date"`
CommencementDate tt.Date `csv:"commencement_date"`
tt.BaseEntity
Expand Down

0 comments on commit a68a4e2

Please sign in to comment.