nidus-sync/db/gen/nidus-sync/public/enum/communicationlogentry.go
Eli Ribble 970cd568dc
Add generated jet tables and models
These will change with schema changes
2026-05-09 01:54:12 +00:00

28 lines
1.1 KiB
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 enum
import "github.com/Gleipnir-Technology/jet/postgres"
var Communicationlogentry = &struct {
Created postgres.StringExpression
StatusClosed postgres.StringExpression
StatusInvalidated postgres.StringExpression
StatusOpened postgres.StringExpression
StatusPending postgres.StringExpression
StatusPossibleIssue postgres.StringExpression
StatusPossibleResolved postgres.StringExpression
}{
Created: postgres.NewEnumValue("created"),
StatusClosed: postgres.NewEnumValue("status.closed"),
StatusInvalidated: postgres.NewEnumValue("status.invalidated"),
StatusOpened: postgres.NewEnumValue("status.opened"),
StatusPending: postgres.NewEnumValue("status.pending"),
StatusPossibleIssue: postgres.NewEnumValue("status.possible-issue"),
StatusPossibleResolved: postgres.NewEnumValue("status.possible-resolved"),
}