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.
elon-eats-my-tweets/generated/store/models.go

25 lines
521 B
Go
Raw Normal View History

// 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
Username string
Name string
AccessToken string
RefreshToken string
DeleteTweetsEnabled bool
DeleteTweetsNumPerIteration int32
CreatedAt time.Time
UpdatedAt time.Time
}