mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-17 06:08:42 +00:00
42 lines
783 B
Go
42 lines
783 B
Go
|
package schema
|
||
|
|
||
|
import (
|
||
|
"entgo.io/ent"
|
||
|
"entgo.io/ent/schema/edge"
|
||
|
"entgo.io/ent/schema/field"
|
||
|
"github.com/hay-kot/content/backend/ent/schema/mixins"
|
||
|
)
|
||
|
|
||
|
// Group holds the schema definition for the Group entity.
|
||
|
type Group struct {
|
||
|
ent.Schema
|
||
|
}
|
||
|
|
||
|
func (Group) Mixin() []ent.Mixin {
|
||
|
return []ent.Mixin{
|
||
|
mixins.BaseMixin{},
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Fields of the Home.
|
||
|
func (Group) Fields() []ent.Field {
|
||
|
return []ent.Field{
|
||
|
field.String("name").
|
||
|
MaxLen(255).
|
||
|
NotEmpty(),
|
||
|
field.Enum("currency").
|
||
|
Default("usd").
|
||
|
Values("usd"), // TODO: add more currencies
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Edges of the Home.
|
||
|
func (Group) Edges() []ent.Edge {
|
||
|
return []ent.Edge{
|
||
|
edge.To("users", User.Type),
|
||
|
edge.To("locations", Location.Type),
|
||
|
edge.To("items", Item.Type),
|
||
|
edge.To("labels", Label.Type),
|
||
|
}
|
||
|
}
|