mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-02-15 01:45:06 +00:00
pr feedback
This commit is contained in:
@@ -9,7 +9,7 @@ import (
|
||||
type UserDto struct {
|
||||
ID string `json:"id"`
|
||||
Username string `json:"username"`
|
||||
Email *string `json:"email" `
|
||||
Email *string `json:"email"`
|
||||
EmailVerified bool `json:"emailVerified"`
|
||||
FirstName string `json:"firstName"`
|
||||
LastName *string `json:"lastName"`
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
CREATE TABLE email_verification_tokens
|
||||
(
|
||||
id TEXT UUID KEY,
|
||||
id UUID PRIMARY KEY,
|
||||
created_at TIMESTAMPTZ NOT NULL,
|
||||
token TEXT NOT NULL UNIQUE,
|
||||
expires_at TIMESTAMPTZ NOT NULL,
|
||||
|
||||
Reference in New Issue
Block a user