Added Ent and user model.

This commit is contained in:
mikestefanello 2021-12-10 20:44:23 -05:00
parent 259c666548
commit 79d2db3c1f
28 changed files with 4145 additions and 13 deletions

31
ent/schema/user.go Normal file
View file

@ -0,0 +1,31 @@
package schema
import (
"time"
"entgo.io/ent"
"entgo.io/ent/schema/field"
)
// User holds the schema definition for the User entity.
type User struct {
ent.Schema
}
// Fields of the User.
func (User) Fields() []ent.Field {
return []ent.Field{
field.String("username").
Unique(),
field.String("password").
Sensitive(),
field.Time("created_at").
Default(time.Now).
Immutable(),
}
}
// Edges of the User.
func (User) Edges() []ent.Edge {
return nil
}