// Code generated by ent, DO NOT EDIT. package itemfield 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 itemfield type in the database. Label = "item_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" // FieldNumberValue holds the string denoting the number_value field in the database. FieldNumberValue = "number_value" // FieldBooleanValue holds the string denoting the boolean_value field in the database. FieldBooleanValue = "boolean_value" // FieldTimeValue holds the string denoting the time_value field in the database. FieldTimeValue = "time_value" // EdgeItem holds the string denoting the item edge name in mutations. EdgeItem = "item" // Table holds the table name of the itemfield in the database. Table = "item_fields" // ItemTable is the table that holds the item relation/edge. ItemTable = "item_fields" // ItemInverseTable is the table name for the Item entity. // It exists in this package in order to avoid circular dependency with the "item" package. ItemInverseTable = "items" // ItemColumn is the table column denoting the item relation/edge. ItemColumn = "item_fields" ) // Columns holds all SQL columns for itemfield fields. var Columns = []string{ FieldID, FieldCreatedAt, FieldUpdatedAt, FieldName, FieldDescription, FieldType, FieldTextValue, FieldNumberValue, FieldBooleanValue, FieldTimeValue, } // ForeignKeys holds the SQL foreign-keys that are owned by the "item_fields" // table and are not defined as standalone fields in the schema. var ForeignKeys = []string{ "item_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 // DefaultBooleanValue holds the default value on creation for the "boolean_value" field. DefaultBooleanValue bool // DefaultTimeValue holds the default value on creation for the "time_value" field. DefaultTimeValue func() time.Time // 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" TypeNumber Type = "number" TypeBoolean Type = "boolean" TypeTime Type = "time" ) 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, TypeNumber, TypeBoolean, TypeTime: return nil default: return fmt.Errorf("itemfield: invalid enum value for type field: %q", _type) } } // OrderOption defines the ordering options for the ItemField 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() } // ByNumberValue orders the results by the number_value field. func ByNumberValue(opts ...sql.OrderTermOption) OrderOption { return sql.OrderByField(FieldNumberValue, opts...).ToFunc() } // ByBooleanValue orders the results by the boolean_value field. func ByBooleanValue(opts ...sql.OrderTermOption) OrderOption { return sql.OrderByField(FieldBooleanValue, opts...).ToFunc() } // ByTimeValue orders the results by the time_value field. func ByTimeValue(opts ...sql.OrderTermOption) OrderOption { return sql.OrderByField(FieldTimeValue, opts...).ToFunc() } // ByItemField orders the results by item field. func ByItemField(field string, opts ...sql.OrderTermOption) OrderOption { return func(s *sql.Selector) { sqlgraph.OrderByNeighborTerms(s, newItemStep(), sql.OrderByField(field, opts...)) } } func newItemStep() *sqlgraph.Step { return sqlgraph.NewStep( sqlgraph.From(Table, FieldID), sqlgraph.To(ItemInverseTable, FieldID), sqlgraph.Edge(sqlgraph.M2O, true, ItemTable, ItemColumn), ) }