This repository has been archived on 2022-05-25. You can view files and clone it, but cannot push or open issues or pull requests.
2022-05-20 20:57:45 +00:00
|
|
|
// Code generated by sqlc. DO NOT EDIT.
|
|
|
|
// versions:
|
|
|
|
// sqlc v1.13.0
|
|
|
|
|
|
|
|
package store
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/google/uuid"
|
|
|
|
)
|
|
|
|
|
|
|
|
type User struct {
|
|
|
|
ID uuid.UUID
|
2022-05-20 22:34:20 +00:00
|
|
|
TwitterID string
|
2022-05-20 20:57:45 +00:00
|
|
|
Username string
|
|
|
|
Name string
|
|
|
|
AccessToken string
|
|
|
|
RefreshToken string
|
|
|
|
DeleteTweetsEnabled bool
|
|
|
|
DeleteTweetsNumPerIteration int32
|
|
|
|
CreatedAt time.Time
|
|
|
|
UpdatedAt time.Time
|
|
|
|
}
|