// Code generated by ent, DO NOT EDIT. package accountgroup import ( "time" "entgo.io/ent/dialect/sql" "entgo.io/ent/dialect/sql/sqlgraph" ) const ( // Label holds the string label denoting the accountgroup type in the database. Label = "account_group" // FieldAccountID holds the string denoting the account_id field in the database. FieldAccountID = "account_id" // FieldGroupID holds the string denoting the group_id field in the database. FieldGroupID = "group_id" // FieldPriority holds the string denoting the priority field in the database. FieldPriority = "priority" // FieldCreatedAt holds the string denoting the created_at field in the database. FieldCreatedAt = "created_at" // EdgeAccount holds the string denoting the account edge name in mutations. EdgeAccount = "account" // EdgeGroup holds the string denoting the group edge name in mutations. EdgeGroup = "group" // AccountFieldID holds the string denoting the ID field of the Account. AccountFieldID = "id" // GroupFieldID holds the string denoting the ID field of the Group. GroupFieldID = "id" // Table holds the table name of the accountgroup in the database. Table = "account_groups" // AccountTable is the table that holds the account relation/edge. AccountTable = "account_groups" // 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" // GroupTable is the table that holds the group relation/edge. GroupTable = "account_groups" // GroupInverseTable is the table name for the Group entity. // It exists in this package in order to avoid circular dependency with the "group" package. GroupInverseTable = "groups" // GroupColumn is the table column denoting the group relation/edge. GroupColumn = "group_id" ) // Columns holds all SQL columns for accountgroup fields. var Columns = []string{ FieldAccountID, FieldGroupID, FieldPriority, FieldCreatedAt, } // 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 ( // DefaultPriority holds the default value on creation for the "priority" field. DefaultPriority int // DefaultCreatedAt holds the default value on creation for the "created_at" field. DefaultCreatedAt func() time.Time ) // OrderOption defines the ordering options for the AccountGroup queries. type OrderOption func(*sql.Selector) // ByAccountID orders the results by the account_id field. func ByAccountID(opts ...sql.OrderTermOption) OrderOption { return sql.OrderByField(FieldAccountID, opts...).ToFunc() } // ByGroupID orders the results by the group_id field. func ByGroupID(opts ...sql.OrderTermOption) OrderOption { return sql.OrderByField(FieldGroupID, opts...).ToFunc() } // ByPriority orders the results by the priority field. func ByPriority(opts ...sql.OrderTermOption) OrderOption { return sql.OrderByField(FieldPriority, opts...).ToFunc() } // ByCreatedAt orders the results by the created_at field. func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption { return sql.OrderByField(FieldCreatedAt, 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...)) } } // ByGroupField orders the results by group field. func ByGroupField(field string, opts ...sql.OrderTermOption) OrderOption { return func(s *sql.Selector) { sqlgraph.OrderByNeighborTerms(s, newGroupStep(), sql.OrderByField(field, opts...)) } } func newAccountStep() *sqlgraph.Step { return sqlgraph.NewStep( sqlgraph.From(Table, AccountColumn), sqlgraph.To(AccountInverseTable, AccountFieldID), sqlgraph.Edge(sqlgraph.M2O, false, AccountTable, AccountColumn), ) } func newGroupStep() *sqlgraph.Step { return sqlgraph.NewStep( sqlgraph.From(Table, GroupColumn), sqlgraph.To(GroupInverseTable, GroupFieldID), sqlgraph.Edge(sqlgraph.M2O, false, GroupTable, GroupColumn), ) }