2019-07-17 13:22:14 +02:00
|
|
|
//
|
|
|
|
|
// 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
|
|
|
|
|
|
2019-08-08 12:02:32 +02:00
|
|
|
import "github.com/go-jet/jet/postgres"
|
2019-07-17 13:22:14 +02:00
|
|
|
|
|
|
|
|
var MpaaRating = &struct {
|
2019-08-08 12:02:32 +02:00
|
|
|
G postgres.StringExpression
|
|
|
|
|
Pg postgres.StringExpression
|
|
|
|
|
Pg13 postgres.StringExpression
|
|
|
|
|
R postgres.StringExpression
|
|
|
|
|
Nc17 postgres.StringExpression
|
2019-07-17 13:22:14 +02:00
|
|
|
}{
|
2019-08-08 12:02:32 +02:00
|
|
|
G: postgres.NewEnumValue("G"),
|
|
|
|
|
Pg: postgres.NewEnumValue("PG"),
|
|
|
|
|
Pg13: postgres.NewEnumValue("PG-13"),
|
|
|
|
|
R: postgres.NewEnumValue("R"),
|
|
|
|
|
Nc17: postgres.NewEnumValue("NC-17"),
|
2019-07-17 13:22:14 +02:00
|
|
|
}
|