refactor: move sqlc files into internal/db/sqlc directory

This commit is contained in:
2026-05-01 12:54:36 +07:00
parent 3185dd09f3
commit e863bc7f10
9 changed files with 1 additions and 0 deletions
+56
View File
@@ -0,0 +1,56 @@
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.27.0
package repository
import (
"github.com/jackc/pgx/v5/pgtype"
)
type Account struct {
ID string
AccountID string
ProviderID string
UserID string
AccessToken pgtype.Text
RefreshToken pgtype.Text
IDToken pgtype.Text
AccessTokenExpiresAt pgtype.Timestamp
RefreshTokenExpiresAt pgtype.Timestamp
Scope pgtype.Text
Password pgtype.Text
CreatedAt pgtype.Timestamp
UpdatedAt pgtype.Timestamp
}
type Session struct {
ID string
ExpiresAt pgtype.Timestamp
Token string
CreatedAt pgtype.Timestamp
UpdatedAt pgtype.Timestamp
IpAddress pgtype.Text
UserAgent pgtype.Text
UserID string
}
type User struct {
ID string
SshIdentifier string
Name string
Email string
EmailVerified bool
Image pgtype.Text
CreatedAt pgtype.Timestamp
UpdatedAt pgtype.Timestamp
}
type Verification struct {
ID string
Identifier string
Value string
ExpiresAt pgtype.Timestamp
CreatedAt pgtype.Timestamp
UpdatedAt pgtype.Timestamp
}