teldrive/models/channel.go
2023-09-21 18:28:32 +05:30

8 lines
216 B
Go

package models
type Channel struct {
ChannelID int64 `gorm:"type:bigint;primaryKey"`
ChannelName string `gorm:"type:text"`
UserID int64 `gorm:"type:bigint;"`
Selected bool `gorm:"type:boolean;"`
}