diff options
| -rw-r--r-- | customer/customer.go | 2 | ||||
| -rw-r--r-- | main.go | 2 | 
2 files changed, 2 insertions, 2 deletions
diff --git a/customer/customer.go b/customer/customer.go index c1290bf..2303ae8 100644 --- a/customer/customer.go +++ b/customer/customer.go @@ -54,5 +54,5 @@ type Customer struct {  	Email             string  	Website           string  	BillingAddress    CustomerBillingAddress -	ShippingAddresses []CustomerShippingAddress `gorm:"index;constraint:OnDelete:CASCADE;"` +	ShippingAddresses CustomerShippingAddress  } @@ -38,7 +38,7 @@ import (  	"log"  ) -const OPENBILLS_VERSION = "v0.14.0" +const OPENBILLS_VERSION = "v0.15.0"  func init() {  	if !viper.GetBool("debug_mode") {  |