// Code generated by ent, DO NOT EDIT. package machine import ( "entgo.io/ent/dialect/sql" ) const ( // Label holds the string label denoting the machine type in the database. Label = "machine" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldPublicKey holds the string denoting the public_key field in the database. FieldPublicKey = "public_key" // Table holds the table name of the machine in the database. Table = "machines" ) // Columns holds all SQL columns for machine fields. var Columns = []string{ FieldID, FieldPublicKey, } // 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 } } return false } // OrderOption defines the ordering options for the Machine 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() } // ByPublicKey orders the results by the public_key field. func ByPublicKey(opts ...sql.OrderTermOption) OrderOption { return sql.OrderByField(FieldPublicKey, opts...).ToFunc() }