12 lines
310 B
Go
12 lines
310 B
Go
|
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)"`
|
||
|
}
|