Files
KoCoder 6d693db605
All checks were successful
Build and Push Docker Image / build (push) Successful in 7m19s
Move all tables into a schema
2026-06-03 00:02:43 +02:00

29 lines
425 B
Go

// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.31.1
package database
import (
"database/sql"
"time"
)
type LssClickLog struct {
ClickID int64
UrlID int32
ClickedAt time.Time
Referrer sql.NullString
UserAgent sql.NullString
IpAddress sql.NullString
}
type LssUrl struct {
UrlID int32
LongUrl string
ShortCode string
CreatedAt time.Time
ExpiresAt sql.NullTime
IsActive bool
}