29 lines
467 B
Go
29 lines
467 B
Go
package schema
|
|
|
|
import (
|
|
"entgo.io/ent"
|
|
"entgo.io/ent/schema/edge"
|
|
"entgo.io/ent/schema/field"
|
|
)
|
|
|
|
// Team holds the schema definition for the Team entity.
|
|
type Team struct {
|
|
ent.Schema
|
|
}
|
|
|
|
// Fields of the Team.
|
|
func (Team) Fields() []ent.Field {
|
|
return []ent.Field{
|
|
field.String("name"),
|
|
}
|
|
}
|
|
|
|
// Edges of the Team.
|
|
func (Team) Edges() []ent.Edge {
|
|
return []ent.Edge{
|
|
edge.To("project", Project.Type),
|
|
edge.From("users", User.Type).
|
|
Ref("teams"),
|
|
}
|
|
}
|