Skip to content

Instantly share code, notes, and snippets.

@manakuro
Created December 10, 2021 04:49
Show Gist options
  • Save manakuro/6eb2b8c4c4621618905fed4a4b1149f7 to your computer and use it in GitHub Desktop.
Save manakuro/6eb2b8c4c4621618905fed4a4b1149f7 to your computer and use it in GitHub Desktop.
func (User) Fields() []ent.Field {
return []ent.Field{
field.String("id").
GoType(ulid.ID("")).
DefaultFunc(func() ulid.ID {
return ulid.MustNew("")
}),
field.String("name").
NotEmpty().
MaxLen(255),
field.Int("age").
Positive(),
// ...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment