19 lines
426 B
Go
19 lines
426 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 enum
|
|
|
|
import "github.com/go-jet/jet/v2/postgres"
|
|
|
|
var Progress = &struct {
|
|
NotStarted postgres.StringExpression
|
|
InProgress postgres.StringExpression
|
|
}{
|
|
NotStarted: postgres.NewEnumValue("not-started"),
|
|
InProgress: postgres.NewEnumValue("in-progress"),
|
|
}
|