homebox/backend/internal/data/ent/schema/location.go

43 lines
812 B
Go
Raw Normal View History

2022-08-30 18:04:50 +00:00
package schema
import (
"entgo.io/ent"
"entgo.io/ent/dialect/entsql"
2022-08-30 18:04:50 +00:00
"entgo.io/ent/schema/edge"
"github.com/hay-kot/homebox/backend/internal/data/ent/schema/mixins"
2022-08-30 18:04:50 +00:00
)
// Location holds the schema definition for the Location entity.
type Location struct {
ent.Schema
}
func (Location) Mixin() []ent.Mixin {
return []ent.Mixin{
mixins.BaseMixin{},
mixins.DetailsMixin{},
}
}
// Fields of the Location.
func (Location) Fields() []ent.Field {
return nil
}
// Edges of the Location.
func (Location) Edges() []ent.Edge {
return []ent.Edge{
edge.To("children", Location.Type).
From("parent").
Unique(),
2022-08-30 18:04:50 +00:00
edge.From("group", Group.Type).
Ref("locations").
Unique().
Required(),
edge.To("items", Item.Type).
Annotations(entsql.Annotation{
OnDelete: entsql.Cascade,
}),
2022-08-30 18:04:50 +00:00
}
}