2022-08-30 18:04:50 +00:00
|
|
|
package schema
|
|
|
|
|
|
|
|
import (
|
|
|
|
"entgo.io/ent"
|
|
|
|
"entgo.io/ent/schema/edge"
|
|
|
|
"entgo.io/ent/schema/field"
|
2022-10-30 04:05:38 +00:00
|
|
|
"github.com/hay-kot/homebox/backend/internal/data/ent/schema/mixins"
|
2022-08-30 18:04:50 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Label holds the schema definition for the Label entity.
|
|
|
|
type Label struct {
|
|
|
|
ent.Schema
|
|
|
|
}
|
|
|
|
|
|
|
|
func (Label) Mixin() []ent.Mixin {
|
|
|
|
return []ent.Mixin{
|
|
|
|
mixins.BaseMixin{},
|
|
|
|
mixins.DetailsMixin{},
|
2023-03-07 06:18:58 +00:00
|
|
|
GroupMixin{ref: "labels"},
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fields of the Label.
|
|
|
|
func (Label) Fields() []ent.Field {
|
|
|
|
return []ent.Field{
|
|
|
|
field.String("color").
|
|
|
|
MaxLen(255).
|
|
|
|
Optional(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Edges of the Label.
|
|
|
|
func (Label) Edges() []ent.Edge {
|
|
|
|
return []ent.Edge{
|
2022-09-29 05:42:33 +00:00
|
|
|
edge.To("items", Item.Type),
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
}
|