2024-02-14 13:08:27 +01:00
|
|
|
// Code generated by ent, DO NOT EDIT.
|
|
|
|
|
|
|
|
|
|
package project
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
|
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
const (
|
|
|
|
|
// Label holds the string label denoting the project type in the database.
|
|
|
|
|
Label = "project"
|
|
|
|
|
// 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"
|
|
|
|
|
// EdgeTeam holds the string denoting the team edge name in mutations.
|
|
|
|
|
EdgeTeam = "team"
|
|
|
|
|
// Table holds the table name of the project in the database.
|
|
|
|
|
Table = "projects"
|
|
|
|
|
// TeamTable is the table that holds the team relation/edge.
|
|
|
|
|
TeamTable = "projects"
|
|
|
|
|
// TeamInverseTable is the table name for the Team entity.
|
|
|
|
|
// It exists in this package in order to avoid circular dependency with the "team" package.
|
|
|
|
|
TeamInverseTable = "teams"
|
|
|
|
|
// TeamColumn is the table column denoting the team relation/edge.
|
2024-02-14 14:55:41 +01:00
|
|
|
TeamColumn = "team_project"
|
2024-02-14 13:08:27 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// Columns holds all SQL columns for project fields.
|
|
|
|
|
var Columns = []string{
|
|
|
|
|
FieldID,
|
|
|
|
|
FieldName,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ForeignKeys holds the SQL foreign-keys that are owned by the "projects"
|
|
|
|
|
// table and are not defined as standalone fields in the schema.
|
|
|
|
|
var ForeignKeys = []string{
|
2024-02-14 14:55:41 +01:00
|
|
|
"team_project",
|
2024-02-14 13:08:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 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
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// OrderOption defines the ordering options for the Project 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()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ByTeamField orders the results by team field.
|
|
|
|
|
func ByTeamField(field string, opts ...sql.OrderTermOption) OrderOption {
|
|
|
|
|
return func(s *sql.Selector) {
|
|
|
|
|
sqlgraph.OrderByNeighborTerms(s, newTeamStep(), sql.OrderByField(field, opts...))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
func newTeamStep() *sqlgraph.Step {
|
|
|
|
|
return sqlgraph.NewStep(
|
|
|
|
|
sqlgraph.From(Table, FieldID),
|
|
|
|
|
sqlgraph.To(TeamInverseTable, FieldID),
|
|
|
|
|
sqlgraph.Edge(sqlgraph.M2O, true, TeamTable, TeamColumn),
|
|
|
|
|
)
|
|
|
|
|
}
|