// Code generated by ent, DO NOT EDIT. package permission import ( "entgo.io/ent/dialect/sql" "entgo.io/ent/dialect/sql/sqlgraph" ) const ( // Label holds the string label denoting the permission type in the database. Label = "permission" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldName holds the string denoting the name field in the database. FieldName = "name" // EdgeRolePermissions holds the string denoting the role_permissions edge name in mutations. EdgeRolePermissions = "role_permissions" // Table holds the table name of the permission in the database. Table = "permissions" // RolePermissionsTable is the table that holds the role_permissions relation/edge. RolePermissionsTable = "role_permissions" // RolePermissionsInverseTable is the table name for the RolePermission entity. // It exists in this package in order to avoid circular dependency with the "rolepermission" package. RolePermissionsInverseTable = "role_permissions" // RolePermissionsColumn is the table column denoting the role_permissions relation/edge. RolePermissionsColumn = "permission_role_permissions" ) // Columns holds all SQL columns for permission fields. var Columns = []string{ FieldID, FieldName, } // 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 ( // NameValidator is a validator for the "name" field. It is called by the builders before save. NameValidator func(string) error ) // OrderOption defines the ordering options for the Permission 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() } // ByName orders the results by the name field. func ByName(opts ...sql.OrderTermOption) OrderOption { return sql.OrderByField(FieldName, opts...).ToFunc() } // ByRolePermissionsCount orders the results by role_permissions count. func ByRolePermissionsCount(opts ...sql.OrderTermOption) OrderOption { return func(s *sql.Selector) { sqlgraph.OrderByNeighborsCount(s, newRolePermissionsStep(), opts...) } } // ByRolePermissions orders the results by role_permissions terms. func ByRolePermissions(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption { return func(s *sql.Selector) { sqlgraph.OrderByNeighborTerms(s, newRolePermissionsStep(), append([]sql.OrderTerm{term}, terms...)...) } } func newRolePermissionsStep() *sqlgraph.Step { return sqlgraph.NewStep( sqlgraph.From(Table, FieldID), sqlgraph.To(RolePermissionsInverseTable, FieldID), sqlgraph.Edge(sqlgraph.O2M, false, RolePermissionsTable, RolePermissionsColumn), ) }