// Code generated by ent, DO NOT EDIT. package templatefield import ( "fmt" "time" "entgo.io/ent/dialect/sql" "entgo.io/ent/dialect/sql/sqlgraph" "github.com/google/uuid" ) const ( // Label holds the string label denoting the templatefield type in the database. Label = "template_field" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldCreatedAt holds the string denoting the created_at field in the database. FieldCreatedAt = "created_at" // FieldUpdatedAt holds the string denoting the updated_at field in the database. FieldUpdatedAt = "updated_at" // FieldName holds the string denoting the name field in the database. FieldName = "name" // FieldDescription holds the string denoting the description field in the database. FieldDescription = "description" // FieldType holds the string denoting the type field in the database. FieldType = "type" // FieldTextValue holds the string denoting the text_value field in the database. FieldTextValue = "text_value" // EdgeItemTemplate holds the string denoting the item_template edge name in mutations. EdgeItemTemplate = "item_template" // Table holds the table name of the templatefield in the database. Table = "template_fields" // ItemTemplateTable is the table that holds the item_template relation/edge. ItemTemplateTable = "template_fields" // ItemTemplateInverseTable is the table name for the ItemTemplate entity. // It exists in this package in order to avoid circular dependency with the "itemtemplate" package. ItemTemplateInverseTable = "item_templates" // ItemTemplateColumn is the table column denoting the item_template relation/edge. ItemTemplateColumn = "item_template_fields" ) // Columns holds all SQL columns for templatefield fields. var Columns = []string{ FieldID, FieldCreatedAt, FieldUpdatedAt, FieldName, FieldDescription, FieldType, FieldTextValue, } // ForeignKeys holds the SQL foreign-keys that are owned by the "template_fields" // table and are not defined as standalone fields in the schema. var ForeignKeys = []string{ "item_template_fields", } // ValidColumn reports if the column name is valid (part of the table columns). func ValidColumn(column string) bool { for i := range Columns { if column == Columns[i] { return true } } for i := range ForeignKeys { if column == ForeignKeys[i] { return true } } return false } var ( // DefaultCreatedAt holds the default value on creation for the "created_at" field. DefaultCreatedAt func() time.Time // DefaultUpdatedAt holds the default value on creation for the "updated_at" field. DefaultUpdatedAt func() time.Time // UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field. UpdateDefaultUpdatedAt func() time.Time // NameValidator is a validator for the "name" field. It is called by the builders before save. NameValidator func(string) error // DescriptionValidator is a validator for the "description" field. It is called by the builders before save. DescriptionValidator func(string) error // TextValueValidator is a validator for the "text_value" field. It is called by the builders before save. TextValueValidator func(string) error // DefaultID holds the default value on creation for the "id" field. DefaultID func() uuid.UUID ) // Type defines the type for the "type" enum field. type Type string // Type values. const ( TypeText Type = "text" ) func (_type Type) String() string { return string(_type) } // TypeValidator is a validator for the "type" field enum values. It is called by the builders before save. func TypeValidator(_type Type) error { switch _type { case TypeText: return nil default: return fmt.Errorf("templatefield: invalid enum value for type field: %q", _type) } } // OrderOption defines the ordering options for the TemplateField queries. type OrderOption func(*sql.Selector) // ByID orders the results by the id field. func ByID(opts ...sql.OrderTermOption) OrderOption { return sql.OrderByField(FieldID, opts...).ToFunc() } // ByCreatedAt orders the results by the created_at field. func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption { return sql.OrderByField(FieldCreatedAt, opts...).ToFunc() } // ByUpdatedAt orders the results by the updated_at field. func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption { return sql.OrderByField(FieldUpdatedAt, opts...).ToFunc() } // ByName orders the results by the name field. func ByName(opts ...sql.OrderTermOption) OrderOption { return sql.OrderByField(FieldName, opts...).ToFunc() } // ByDescription orders the results by the description field. func ByDescription(opts ...sql.OrderTermOption) OrderOption { return sql.OrderByField(FieldDescription, opts...).ToFunc() } // ByType orders the results by the type field. func ByType(opts ...sql.OrderTermOption) OrderOption { return sql.OrderByField(FieldType, opts...).ToFunc() } // ByTextValue orders the results by the text_value field. func ByTextValue(opts ...sql.OrderTermOption) OrderOption { return sql.OrderByField(FieldTextValue, opts...).ToFunc() } // ByItemTemplateField orders the results by item_template field. func ByItemTemplateField(field string, opts ...sql.OrderTermOption) OrderOption { return func(s *sql.Selector) { sqlgraph.OrderByNeighborTerms(s, newItemTemplateStep(), sql.OrderByField(field, opts...)) } } func newItemTemplateStep() *sqlgraph.Step { return sqlgraph.NewStep( sqlgraph.From(Table, FieldID), sqlgraph.To(ItemTemplateInverseTable, FieldID), sqlgraph.Edge(sqlgraph.M2O, true, ItemTemplateTable, ItemTemplateColumn), ) }