mirror of
https://github.com/status-im/fathom.git
synced 2025-03-01 11:30:28 +00:00
18 lines
426 B
Go
18 lines
426 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Pageview struct {
|
|
ID int64 `db:"id"`
|
|
SessionID string `db:"session_id"`
|
|
Pathname string `db:"pathname"`
|
|
IsNewVisitor bool `db:"is_new_visitor"`
|
|
IsUnique bool `db:"is_unique"`
|
|
IsBounce bool `db:"is_bounce"`
|
|
Referrer string `db:"referrer"`
|
|
Duration int64 `db:"duration"`
|
|
Timestamp time.Time `db:"timestamp"`
|
|
}
|