9 lines
208 B
Go
9 lines
208 B
Go
package model
|
|
|
|
type LiveRoom struct {
|
|
ID uint `gorm:"primarykey"`
|
|
RoomID uint `gorm:"uniqueIndex;not null"`
|
|
Title string `gorm:"not null;default:''"`
|
|
Tags string `gorm:"not null;default:''"`
|
|
}
|