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