12 lines
242 B
Go
12 lines
242 B
Go
|
package api
|
||
|
|
||
|
import "database/sql"
|
||
|
|
||
|
type Conversation struct {
|
||
|
ID uint `gorm:"primaryKey"`
|
||
|
ShortName sql.NullString
|
||
|
Title string
|
||
|
SelectedRootID *uint
|
||
|
SelectedRoot *Message `gorm:"foreignKey:SelectedRootID"`
|
||
|
}
|