Shioriko/pkg/database/user.go

15 lines
190 B
Go
Raw Normal View History

2021-05-09 15:07:23 +00: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
}