15 lines
190 B
Go
Raw Normal View History

2021-05-09 22:07:23 +07:00
package database
import (
"time"
)
type User struct {
ID string `gorm:"size:36"`
Email string
Username string
Password string
CreatedAt time.Time
UpdatedAt time.Time
}