// Code generated by sqlc. DO NOT EDIT. package psqlcore import ( "database/sql" "encoding/json" "time" ) type CoreCounter struct { ID string `json:"id"` Value sql.NullInt32 `json:"value"` } type DataChange struct { ID string `json:"id"` Model string `json:"model"` Op string `json:"op"` Author string `json:"author"` Listed bool `json:"listed"` Date time.Time `json:"date"` Keys []string `json:"keys"` Objects json.RawMessage `json:"objects"` } type DataChannel struct { Name string `json:"name"` Logged bool `json:"logged"` Hub bool `json:"hub"` EventName string `json:"event_name"` LocationName string `json:"location_name"` } type DataCharacter struct { ID string `json:"id"` Nicks []string `json:"nicks"` Name string `json:"name"` ShortName string `json:"short_name"` Author string `json:"author"` Description string `json:"description"` TsVector interface{} `json:"ts_vector"` }