forked from mirrors/homebox
31b34241e0
* change /content/ -> /homebox/ * add cache to code generators * update env variables to set data storage * update env variables * set env variables in prod container * implement attachment post route (WIP) * get attachment endpoint * attachment download * implement string utilities lib * implement generic drop zone * use explicit truncate * remove clean dir * drop strings composable for lib * update item types and add attachments * add attachment API * implement service context * consolidate API code * implement editing attachments * implement upload limit configuration * improve error handling * add docs for max upload size * fix test cases
48 lines
908 B
Go
48 lines
908 B
Go
package schema
|
|
|
|
import (
|
|
"time"
|
|
|
|
"entgo.io/ent"
|
|
"entgo.io/ent/schema/edge"
|
|
"entgo.io/ent/schema/field"
|
|
"github.com/hay-kot/homebox/backend/ent/schema/mixins"
|
|
)
|
|
|
|
// ItemField holds the schema definition for the ItemField entity.
|
|
type ItemField struct {
|
|
ent.Schema
|
|
}
|
|
|
|
func (ItemField) Mixin() []ent.Mixin {
|
|
return []ent.Mixin{
|
|
mixins.BaseMixin{},
|
|
mixins.DetailsMixin{},
|
|
}
|
|
}
|
|
|
|
// Fields of the ItemField.
|
|
func (ItemField) Fields() []ent.Field {
|
|
return []ent.Field{
|
|
field.Enum("type").
|
|
Values("text", "number", "boolean", "time"),
|
|
field.String("text_value").
|
|
MaxLen(500).
|
|
Optional(),
|
|
field.Int("number_value").
|
|
Optional(),
|
|
field.Bool("boolean_value").
|
|
Default(false),
|
|
field.Time("time_value").
|
|
Default(time.Now),
|
|
}
|
|
}
|
|
|
|
// Edges of the ItemField.
|
|
func (ItemField) Edges() []ent.Edge {
|
|
return []ent.Edge{
|
|
edge.From("item", Item.Type).
|
|
Ref("fields").
|
|
Unique(),
|
|
}
|
|
}
|