Files
gator/internal/database/models.go
T

49 lines
778 B
Go
Raw Normal View History

2026-08-01 14:26:19 -05:00
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.31.1
package database
import (
2026-08-03 07:14:33 -05:00
"database/sql"
2026-08-01 14:26:19 -05:00
"time"
"github.com/google/uuid"
)
type Feed struct {
2026-08-03 07:14:33 -05:00
ID uuid.UUID
CreatedAt time.Time
UpdatedAt time.Time
Name string
Url string
UserID uuid.UUID
LastFetchedAt sql.NullTime
2026-08-01 14:26:19 -05:00
}
2026-08-02 07:49:57 -05:00
type Follow struct {
ID uuid.UUID
CreatedAt time.Time
UpdatedAt time.Time
UserID uuid.UUID
FeedID uuid.UUID
}
2026-08-03 07:14:33 -05:00
type Post struct {
ID uuid.UUID
CreatedAt time.Time
UpdatedAt time.Time
Title string
Url string
Description string
PublishedAt sql.NullTime
FeedID uuid.UUID
}
2026-08-01 14:26:19 -05:00
type User struct {
ID uuid.UUID
CreatedAt time.Time
UpdatedAt time.Time
Name string
}