13 lines
323 B
Go
13 lines
323 B
Go
package models
|
|
|
|
type CrmLanguage struct {
|
|
ID int `gorm:"primaryKey;column:id" json:"id"`
|
|
Name *string `gorm:"column:name" json:"name"`
|
|
Active *bool `gorm:"column:active" json:"active"`
|
|
CRMID *string `gorm:"column:crm_id" json:"crm_id"`
|
|
}
|
|
|
|
func (CrmLanguage) TableName() string {
|
|
return "live_languages"
|
|
}
|