fixed some login and booking bugs
This commit is contained in:
@@ -10,14 +10,16 @@ import (
|
||||
)
|
||||
|
||||
type Booking struct {
|
||||
ID int64 `json:"id"`
|
||||
UserID sql.NullInt64 `json:"user_id"`
|
||||
ServiceID sql.NullInt64 `json:"service_id"`
|
||||
EventDate time.Time `json:"event_date"`
|
||||
Notes sql.NullString `json:"notes"`
|
||||
CreatedAt sql.NullTime `json:"created_at"`
|
||||
Address sql.NullString `json:"address"`
|
||||
Status sql.NullString `json:"status"`
|
||||
ID int64 `json:"id"`
|
||||
UserID sql.NullInt64 `json:"user_id"`
|
||||
ServiceID sql.NullInt64 `json:"service_id"`
|
||||
EventDate time.Time `json:"event_date"`
|
||||
Notes sql.NullString `json:"notes"`
|
||||
CreatedAt sql.NullTime `json:"created_at"`
|
||||
Address sql.NullString `json:"address"`
|
||||
Status sql.NullString `json:"status"`
|
||||
ServiceOption sql.NullString `json:"service_option"`
|
||||
EventType sql.NullString `json:"event_type"`
|
||||
}
|
||||
|
||||
type GalleryPhoto struct {
|
||||
|
||||
Reference in New Issue
Block a user