26 lines
446 B
Go
26 lines
446 B
Go
//
|
|
// Code generated by go-jet DO NOT EDIT.
|
|
//
|
|
// WARNING: Changes to this file may cause incorrect behavior
|
|
// and will be lost if the code is regenerated
|
|
//
|
|
|
|
package model
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type ChannelMessages struct {
|
|
ID int64 `sql:"primary_key"`
|
|
ChannelID int64
|
|
UUID int64
|
|
Content *string
|
|
Media string
|
|
PublishedAt time.Time
|
|
CreatedAt time.Time
|
|
GroupID int64
|
|
Published bool
|
|
Like bool
|
|
}
|