mirror of
https://github.com/get-drexa/drive.git
synced 2025-11-30 21:41:39 +00:00
27 lines
886 B
Go
27 lines
886 B
Go
package user
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/get-drexa/drexa/internal/password"
|
|
"github.com/google/uuid"
|
|
"github.com/uptrace/bun"
|
|
)
|
|
|
|
type User struct {
|
|
bun.BaseModel `bun:"users"`
|
|
|
|
ID uuid.UUID `bun:",pk,type:uuid" json:"id"`
|
|
DisplayName string `bun:"display_name" json:"displayName"`
|
|
Email string `bun:"email,unique,notnull" json:"email"`
|
|
Password password.Hashed `bun:"password,notnull" json:"-"`
|
|
StorageUsageBytes int64 `bun:"storage_usage_bytes,notnull" json:"storageUsageBytes"`
|
|
StorageQuotaBytes int64 `bun:"storage_quota_bytes,notnull" json:"storageQuotaBytes"`
|
|
CreatedAt time.Time `bun:"created_at,notnull" json:"createdAt"`
|
|
UpdatedAt time.Time `bun:"updated_at,notnull" json:"updatedAt"`
|
|
}
|
|
|
|
func newUserID() (uuid.UUID, error) {
|
|
return uuid.NewV7()
|
|
}
|