forked from mirrors/homebox
update schema files
This commit is contained in:
parent
f169f1c710
commit
b491ff9ec1
2 changed files with 61 additions and 2 deletions
55
backend/internal/data/ent/schema/notifier.go
Executable file
55
backend/internal/data/ent/schema/notifier.go
Executable file
|
@ -0,0 +1,55 @@
|
||||||
|
package schema
|
||||||
|
|
||||||
|
import (
|
||||||
|
"entgo.io/ent"
|
||||||
|
"entgo.io/ent/schema/edge"
|
||||||
|
"entgo.io/ent/schema/field"
|
||||||
|
"entgo.io/ent/schema/index"
|
||||||
|
|
||||||
|
"github.com/google/uuid"
|
||||||
|
"github.com/hay-kot/homebox/backend/internal/data/ent/schema/mixins"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Notifier struct {
|
||||||
|
ent.Schema
|
||||||
|
}
|
||||||
|
|
||||||
|
func (Notifier) Mixin() []ent.Mixin {
|
||||||
|
return []ent.Mixin{
|
||||||
|
mixins.BaseMixin{},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fields of the Notifier.
|
||||||
|
func (Notifier) Fields() []ent.Field {
|
||||||
|
return []ent.Field{
|
||||||
|
field.UUID("user_id", uuid.UUID{}),
|
||||||
|
field.String("name").
|
||||||
|
MaxLen(255).
|
||||||
|
NotEmpty(),
|
||||||
|
field.String("url").
|
||||||
|
Sensitive().
|
||||||
|
MaxLen(2083). // supposed max length of URL
|
||||||
|
NotEmpty(),
|
||||||
|
field.Bool("is_active").
|
||||||
|
Default(true),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Edges of the Notifier.
|
||||||
|
func (Notifier) Edges() []ent.Edge {
|
||||||
|
return []ent.Edge{
|
||||||
|
edge.From("user", User.Type).
|
||||||
|
Field("user_id").
|
||||||
|
Ref("notifiers").
|
||||||
|
Required().
|
||||||
|
Unique(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (Notifier) Indexes() []ent.Index {
|
||||||
|
return []ent.Index{
|
||||||
|
index.Fields("user_id"),
|
||||||
|
index.Fields("user_id", "is_active"),
|
||||||
|
}
|
||||||
|
}
|
|
@ -35,11 +35,11 @@ func (User) Fields() []ent.Field {
|
||||||
Sensitive(),
|
Sensitive(),
|
||||||
field.Bool("is_superuser").
|
field.Bool("is_superuser").
|
||||||
Default(false),
|
Default(false),
|
||||||
|
field.Bool("superuser").
|
||||||
|
Default(false),
|
||||||
field.Enum("role").
|
field.Enum("role").
|
||||||
Default("user").
|
Default("user").
|
||||||
Values("user", "owner"),
|
Values("user", "owner"),
|
||||||
field.Bool("superuser").
|
|
||||||
Default(false),
|
|
||||||
field.Time("activated_on").
|
field.Time("activated_on").
|
||||||
Optional(),
|
Optional(),
|
||||||
}
|
}
|
||||||
|
@ -56,5 +56,9 @@ func (User) Edges() []ent.Edge {
|
||||||
Annotations(entsql.Annotation{
|
Annotations(entsql.Annotation{
|
||||||
OnDelete: entsql.Cascade,
|
OnDelete: entsql.Cascade,
|
||||||
}),
|
}),
|
||||||
|
edge.To("notifiers", Notifier.Type).
|
||||||
|
Annotations(entsql.Annotation{
|
||||||
|
OnDelete: entsql.Cascade,
|
||||||
|
}),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue