Shioriko/pkg/database/user.go
2021-05-10 09:45:32 +07:00

15 lines
190 B
Go

package database
import (
"time"
)
type User struct {
ID string `gorm:"size:36"`
Email string
Username string
Password string
CreatedAt time.Time
UpdatedAt time.Time
}