move Lang field to connection model

This commit is contained in:
Pavel 2022-08-11 10:41:10 +03:00 committed by GitHub
commit f0aff7f55f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 1 deletions

View File

@ -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"`

View File

@ -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"`
}