teldrive/pkg/models/channel.go

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