Init V4 community edition (#2265)

* Init V4 community edition

* Init V4 community edition
This commit is contained in:
AaronLiu
2025-04-20 17:31:25 +08:00
committed by GitHub
parent da4e44b77a
commit 21d158db07
597 changed files with 119415 additions and 41692 deletions

30
ent/schema/setting.go Normal file
View File

@@ -0,0 +1,30 @@
package schema
import (
"entgo.io/ent"
"entgo.io/ent/schema/field"
)
// Setting holds the schema definition for key-value setting entity.
type Setting struct {
ent.Schema
}
func (Setting) Fields() []ent.Field {
return []ent.Field{
field.String("name").
Unique(),
field.Text("value").
Optional(),
}
}
func (Setting) Edges() []ent.Edge {
return nil
}
func (Setting) Mixin() []ent.Mixin {
return []ent.Mixin{
CommonMixin{},
}
}