merp/models/merp.go

12 lines
310 B
Go
Raw Normal View History

2019-10-27 12:38:03 +00:00
package models
import "time"
type Merp struct {
ID int `json:"id" orm:"auto"`
Content string `json:"content" orm:"type(json)"`
Created time.Time `orm:"auto_now_add;type(datetime)"`
RemoteIP string `json:"remoteIP" orm:"size(128)"`
Thing string `json:"thing" orm:"size(128)"`
}