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
520 B
Go

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