bab57343e1
CI / changes (pull_request) Successful in 2s
CI / unit (pull_request) Successful in 10s
CI / integration (pull_request) Successful in 19s
CI / ui (pull_request) Has been skipped
CI / conformance (pull_request) Successful in 10s
CI / gate (pull_request) Successful in 0s
CI / deploy (pull_request) Successful in 1m43s
The committed go-jet code had drifted from the schema: robot_blocks and robot_friend_requests (created in the baseline) had no generated tables, the feedback_messages model was missing app_version/browser_tz (added in 00003 and 00004), and UseSchema omitted account_best_move and the two robot tables. Regenerate so the jet layer mirrors the migrations again. Additive only — two nullable columns appended to feedback_messages plus two new tables; the full build, vet, unit and integration suites stay green.
33 lines
674 B
Go
33 lines
674 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 (
|
|
"github.com/google/uuid"
|
|
"time"
|
|
)
|
|
|
|
type FeedbackMessages struct {
|
|
MessageID uuid.UUID `sql:"primary_key"`
|
|
AccountID uuid.UUID
|
|
Body string
|
|
Attachment *[]byte
|
|
AttachmentName *string
|
|
SenderIP *string
|
|
Channel string
|
|
ReadAt *time.Time
|
|
ArchivedAt *time.Time
|
|
ReplyBody *string
|
|
RepliedAt *time.Time
|
|
ReplyReadAt *time.Time
|
|
CreatedAt time.Time
|
|
Lang *string
|
|
AppVersion *string
|
|
BrowserTz *string
|
|
}
|