// Code generated by ent, DO NOT EDIT. package logentry import ( "time" "entgo.io/ent/dialect/sql" "entgo.io/ent/dialect/sql/sqlgraph" ) const ( // Label holds the string label denoting the logentry type in the database. Label = "logentry" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldTimestamp holds the string denoting the timestamp field in the database. FieldTimestamp = "timestamp" // FieldAction holds the string denoting the action field in the database. FieldAction = "action" // FieldData holds the string denoting the data field in the database. FieldData = "data" // FieldAccountID holds the string denoting the account_id field in the database. FieldAccountID = "account_id" // FieldDomainID holds the string denoting the domain_id field in the database. FieldDomainID = "domain_id" // EdgeAccount holds the string denoting the account edge name in mutations. EdgeAccount = "account" // EdgeDomain holds the string denoting the domain edge name in mutations. EdgeDomain = "domain" // Table holds the table name of the logentry in the database. Table = "logentries" // AccountTable is the table that holds the account relation/edge. AccountTable = "logentries" // AccountInverseTable is the table name for the Account entity. // It exists in this package in order to avoid circular dependency with the "account" package. AccountInverseTable = "accounts" // AccountColumn is the table column denoting the account relation/edge. AccountColumn = "account_id" // DomainTable is the table that holds the domain relation/edge. DomainTable = "logentries" // DomainInverseTable is the table name for the Domain entity. // It exists in this package in order to avoid circular dependency with the "domain" package. DomainInverseTable = "domains" // DomainColumn is the table column denoting the domain relation/edge. DomainColumn = "domain_id" ) // Columns holds all SQL columns for logentry fields. var Columns = []string{ FieldID, FieldTimestamp, FieldAction, FieldData, FieldAccountID, FieldDomainID, } // 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 } var ( // DefaultTimestamp holds the default value on creation for the "timestamp" field. DefaultTimestamp func() time.Time ) // OrderOption defines the ordering options for the Logentry 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() } // ByTimestamp orders the results by the timestamp field. func ByTimestamp(opts ...sql.OrderTermOption) OrderOption { return sql.OrderByField(FieldTimestamp, opts...).ToFunc() } // ByAction orders the results by the action field. func ByAction(opts ...sql.OrderTermOption) OrderOption { return sql.OrderByField(FieldAction, opts...).ToFunc() } // ByData orders the results by the data field. func ByData(opts ...sql.OrderTermOption) OrderOption { return sql.OrderByField(FieldData, opts...).ToFunc() } // ByAccountID orders the results by the account_id field. func ByAccountID(opts ...sql.OrderTermOption) OrderOption { return sql.OrderByField(FieldAccountID, opts...).ToFunc() } // ByDomainID orders the results by the domain_id field. func ByDomainID(opts ...sql.OrderTermOption) OrderOption { return sql.OrderByField(FieldDomainID, opts...).ToFunc() } // ByAccountField orders the results by account field. func ByAccountField(field string, opts ...sql.OrderTermOption) OrderOption { return func(s *sql.Selector) { sqlgraph.OrderByNeighborTerms(s, newAccountStep(), sql.OrderByField(field, opts...)) } } // ByDomainField orders the results by domain field. func ByDomainField(field string, opts ...sql.OrderTermOption) OrderOption { return func(s *sql.Selector) { sqlgraph.OrderByNeighborTerms(s, newDomainStep(), sql.OrderByField(field, opts...)) } } func newAccountStep() *sqlgraph.Step { return sqlgraph.NewStep( sqlgraph.From(Table, FieldID), sqlgraph.To(AccountInverseTable, FieldID), sqlgraph.Edge(sqlgraph.M2O, true, AccountTable, AccountColumn), ) } func newDomainStep() *sqlgraph.Step { return sqlgraph.NewStep( sqlgraph.From(Table, FieldID), sqlgraph.To(DomainInverseTable, FieldID), sqlgraph.Edge(sqlgraph.M2O, true, DomainTable, DomainColumn), ) }