teldrive/pkg/models/channel.go
2023-12-03 01:17:23 +05:30

9 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;"`
}