package booking import "gorm.io/gorm" type Payment struct { gorm.Model BookingID uint `gorm:"not null;index"` Booking Booking `gorm:"foreignKey:BookingID;constraint:OnDelete:CASCADE"` Amount float64 PaymentMethod string }