16 lines
251 B
Go
16 lines
251 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type User struct {
|
|
ID uint `gorm:"primary_key"`
|
|
Name string
|
|
LastName string
|
|
Email string
|
|
Password string `gorm:"not null"`
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|