mirror of
https://github.com/retailcrm/mg-transport-core.git
synced 2024-11-21 20:56:04 +03:00
move Lang field to connection model
This commit is contained in:
commit
f0aff7f55f
@ -8,7 +8,6 @@ type Account struct {
|
||||
UpdatedAt time.Time
|
||||
ChannelSettingsHash string `gorm:"column:channel_settings_hash; type:varchar(70)" binding:"max=70"`
|
||||
Name string `gorm:"column:name; type:varchar(100)" json:"name,omitempty" binding:"max=100"`
|
||||
Lang string `gorm:"column:lang; type:varchar(2)" json:"lang,omitempty" binding:"max=2"`
|
||||
Channel uint64 `gorm:"column:channel; not null; unique" json:"channel,omitempty"`
|
||||
ID int `gorm:"primary_key" json:"id"`
|
||||
ConnectionID int `gorm:"column:connection_id" json:"connectionId,omitempty"`
|
||||
|
@ -14,4 +14,5 @@ type Connection struct {
|
||||
Accounts []Account `gorm:"foreignkey:ConnectionID" json:"accounts"`
|
||||
ID int `gorm:"primary_key" json:"id"`
|
||||
Active bool `json:"active,omitempty"`
|
||||
Lang string `gorm:"column:lang; type:varchar(2)" json:"lang,omitempty" binding:"max=2"`
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user