20 lines
367 B
Go
20 lines
367 B
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.28.0
|
|
|
|
package db
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
type User struct {
|
|
Uuid uuid.UUID `json:"uuid"`
|
|
PhoneNumber string `json:"phone_number"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
Verified bool `json:"verified"`
|
|
VerifiedAt *time.Time `json:"verified_at"`
|
|
}
|