some debugging
This commit is contained in:
@@ -6,8 +6,8 @@ type Country struct {
|
||||
Name string `gorm:"column:name" json:"name"`
|
||||
Flag string `gorm:"size:16;not null;column:flag" json:"flag"`
|
||||
CurrencyID uint `gorm:"column:id_currency" json:"currency_id"`
|
||||
CurrencyISOCode string `gorm:"column:iso_code" json:"currency_iso_code"`
|
||||
CurrencyName string `gorm:"column:name" json:"currency_name"`
|
||||
CurrencyISOCode string `gorm:"column:currency_iso_code" json:"currency_iso_code"`
|
||||
CurrencyName string `gorm:"column:currency_name" json:"currency_name"`
|
||||
}
|
||||
|
||||
func (Country) TableName() string {
|
||||
|
||||
@@ -85,7 +85,7 @@ type ProductFilters struct {
|
||||
}
|
||||
|
||||
type ScannedCategory struct {
|
||||
CategoryID uint `gorm:"column:ID;primaryKey"`
|
||||
CategoryID uint `gorm:"column:category_id;primaryKey"`
|
||||
Name string `gorm:"column:name"`
|
||||
Active uint `gorm:"column:active"`
|
||||
Position uint `gorm:"column:position"`
|
||||
|
||||
Reference in New Issue
Block a user