visitlog

package
v0.0.0-...-e58cecd Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 15, 2023 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the visitlog type in the database.
	Label = "visit_log"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldPlatform holds the string denoting the platform field in the database.
	FieldPlatform = "platform"
	// FieldOs holds the string denoting the os field in the database.
	FieldOs = "os"
	// FieldIP holds the string denoting the ip field in the database.
	FieldIP = "ip"
	// FieldReferer holds the string denoting the referer field in the database.
	FieldReferer = "referer"
	// FieldEngineName holds the string denoting the engine_name field in the database.
	FieldEngineName = "engine_name"
	// FieldEngineVersion holds the string denoting the engine_version field in the database.
	FieldEngineVersion = "engine_version"
	// FieldBrowserName holds the string denoting the browser_name field in the database.
	FieldBrowserName = "browser_name"
	// FieldBrowserVersion holds the string denoting the browser_version field in the database.
	FieldBrowserVersion = "browser_version"
	// FieldMozilla holds the string denoting the mozilla field in the database.
	FieldMozilla = "mozilla"
	// FieldBot holds the string denoting the bot field in the database.
	FieldBot = "bot"
	// FieldMobile holds the string denoting the mobile field in the database.
	FieldMobile = "mobile"
	// FieldCreatedAt holds the string denoting the created_at field in the database.
	FieldCreatedAt = "created_at"
	// EdgeURL holds the string denoting the url edge name in mutations.
	EdgeURL = "url"
	// Table holds the table name of the visitlog in the database.
	Table = "log"
	// URLTable is the table that holds the url relation/edge.
	URLTable = "log"
	// URLInverseTable is the table name for the Url entity.
	// It exists in this package in order to avoid circular dependency with the "url" package.
	URLInverseTable = "url"
	// URLColumn is the table column denoting the url relation/edge.
	URLColumn = "url_logs"
)

Variables

Columns holds all SQL columns for visitlog fields.

View Source
var (
	// DefaultCreatedAt holds the default value on creation for the "created_at" field.
	DefaultCreatedAt func() time.Time
)
View Source
var ForeignKeys = []string{
	"url_logs",
}

ForeignKeys holds the SQL foreign-keys that are owned by the "log" table and are not defined as standalone fields in the schema.

Functions

func And

func And(predicates ...predicate.VisitLog) predicate.VisitLog

And groups predicates with the AND operator between them.

func Bot

func Bot(v bool) predicate.VisitLog

Bot applies equality check predicate on the "bot" field. It's identical to BotEQ.

func BotEQ

func BotEQ(v bool) predicate.VisitLog

BotEQ applies the EQ predicate on the "bot" field.

func BotNEQ

func BotNEQ(v bool) predicate.VisitLog

BotNEQ applies the NEQ predicate on the "bot" field.

func BrowserName

func BrowserName(v string) predicate.VisitLog

BrowserName applies equality check predicate on the "browser_name" field. It's identical to BrowserNameEQ.

func BrowserNameContains

func BrowserNameContains(v string) predicate.VisitLog

BrowserNameContains applies the Contains predicate on the "browser_name" field.

func BrowserNameContainsFold

func BrowserNameContainsFold(v string) predicate.VisitLog

BrowserNameContainsFold applies the ContainsFold predicate on the "browser_name" field.

func BrowserNameEQ

func BrowserNameEQ(v string) predicate.VisitLog

BrowserNameEQ applies the EQ predicate on the "browser_name" field.

func BrowserNameEqualFold

func BrowserNameEqualFold(v string) predicate.VisitLog

BrowserNameEqualFold applies the EqualFold predicate on the "browser_name" field.

func BrowserNameGT

func BrowserNameGT(v string) predicate.VisitLog

BrowserNameGT applies the GT predicate on the "browser_name" field.

func BrowserNameGTE

func BrowserNameGTE(v string) predicate.VisitLog

BrowserNameGTE applies the GTE predicate on the "browser_name" field.

func BrowserNameHasPrefix

func BrowserNameHasPrefix(v string) predicate.VisitLog

BrowserNameHasPrefix applies the HasPrefix predicate on the "browser_name" field.

func BrowserNameHasSuffix

func BrowserNameHasSuffix(v string) predicate.VisitLog

BrowserNameHasSuffix applies the HasSuffix predicate on the "browser_name" field.

func BrowserNameIn

func BrowserNameIn(vs ...string) predicate.VisitLog

BrowserNameIn applies the In predicate on the "browser_name" field.

func BrowserNameLT

func BrowserNameLT(v string) predicate.VisitLog

BrowserNameLT applies the LT predicate on the "browser_name" field.

func BrowserNameLTE

func BrowserNameLTE(v string) predicate.VisitLog

BrowserNameLTE applies the LTE predicate on the "browser_name" field.

func BrowserNameNEQ

func BrowserNameNEQ(v string) predicate.VisitLog

BrowserNameNEQ applies the NEQ predicate on the "browser_name" field.

func BrowserNameNotIn

func BrowserNameNotIn(vs ...string) predicate.VisitLog

BrowserNameNotIn applies the NotIn predicate on the "browser_name" field.

func BrowserVersion

func BrowserVersion(v string) predicate.VisitLog

BrowserVersion applies equality check predicate on the "browser_version" field. It's identical to BrowserVersionEQ.

func BrowserVersionContains

func BrowserVersionContains(v string) predicate.VisitLog

BrowserVersionContains applies the Contains predicate on the "browser_version" field.

func BrowserVersionContainsFold

func BrowserVersionContainsFold(v string) predicate.VisitLog

BrowserVersionContainsFold applies the ContainsFold predicate on the "browser_version" field.

func BrowserVersionEQ

func BrowserVersionEQ(v string) predicate.VisitLog

BrowserVersionEQ applies the EQ predicate on the "browser_version" field.

func BrowserVersionEqualFold

func BrowserVersionEqualFold(v string) predicate.VisitLog

BrowserVersionEqualFold applies the EqualFold predicate on the "browser_version" field.

func BrowserVersionGT

func BrowserVersionGT(v string) predicate.VisitLog

BrowserVersionGT applies the GT predicate on the "browser_version" field.

func BrowserVersionGTE

func BrowserVersionGTE(v string) predicate.VisitLog

BrowserVersionGTE applies the GTE predicate on the "browser_version" field.

func BrowserVersionHasPrefix

func BrowserVersionHasPrefix(v string) predicate.VisitLog

BrowserVersionHasPrefix applies the HasPrefix predicate on the "browser_version" field.

func BrowserVersionHasSuffix

func BrowserVersionHasSuffix(v string) predicate.VisitLog

BrowserVersionHasSuffix applies the HasSuffix predicate on the "browser_version" field.

func BrowserVersionIn

func BrowserVersionIn(vs ...string) predicate.VisitLog

BrowserVersionIn applies the In predicate on the "browser_version" field.

func BrowserVersionLT

func BrowserVersionLT(v string) predicate.VisitLog

BrowserVersionLT applies the LT predicate on the "browser_version" field.

func BrowserVersionLTE

func BrowserVersionLTE(v string) predicate.VisitLog

BrowserVersionLTE applies the LTE predicate on the "browser_version" field.

func BrowserVersionNEQ

func BrowserVersionNEQ(v string) predicate.VisitLog

BrowserVersionNEQ applies the NEQ predicate on the "browser_version" field.

func BrowserVersionNotIn

func BrowserVersionNotIn(vs ...string) predicate.VisitLog

BrowserVersionNotIn applies the NotIn predicate on the "browser_version" field.

func CreatedAt

func CreatedAt(v time.Time) predicate.VisitLog

CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.VisitLog

CreatedAtEQ applies the EQ predicate on the "created_at" field.

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.VisitLog

CreatedAtGT applies the GT predicate on the "created_at" field.

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.VisitLog

CreatedAtGTE applies the GTE predicate on the "created_at" field.

func CreatedAtIn

func CreatedAtIn(vs ...time.Time) predicate.VisitLog

CreatedAtIn applies the In predicate on the "created_at" field.

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.VisitLog

CreatedAtLT applies the LT predicate on the "created_at" field.

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.VisitLog

CreatedAtLTE applies the LTE predicate on the "created_at" field.

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.VisitLog

CreatedAtNEQ applies the NEQ predicate on the "created_at" field.

func CreatedAtNotIn

func CreatedAtNotIn(vs ...time.Time) predicate.VisitLog

CreatedAtNotIn applies the NotIn predicate on the "created_at" field.

func EngineName

func EngineName(v string) predicate.VisitLog

EngineName applies equality check predicate on the "engine_name" field. It's identical to EngineNameEQ.

func EngineNameContains

func EngineNameContains(v string) predicate.VisitLog

EngineNameContains applies the Contains predicate on the "engine_name" field.

func EngineNameContainsFold

func EngineNameContainsFold(v string) predicate.VisitLog

EngineNameContainsFold applies the ContainsFold predicate on the "engine_name" field.

func EngineNameEQ

func EngineNameEQ(v string) predicate.VisitLog

EngineNameEQ applies the EQ predicate on the "engine_name" field.

func EngineNameEqualFold

func EngineNameEqualFold(v string) predicate.VisitLog

EngineNameEqualFold applies the EqualFold predicate on the "engine_name" field.

func EngineNameGT

func EngineNameGT(v string) predicate.VisitLog

EngineNameGT applies the GT predicate on the "engine_name" field.

func EngineNameGTE

func EngineNameGTE(v string) predicate.VisitLog

EngineNameGTE applies the GTE predicate on the "engine_name" field.

func EngineNameHasPrefix

func EngineNameHasPrefix(v string) predicate.VisitLog

EngineNameHasPrefix applies the HasPrefix predicate on the "engine_name" field.

func EngineNameHasSuffix

func EngineNameHasSuffix(v string) predicate.VisitLog

EngineNameHasSuffix applies the HasSuffix predicate on the "engine_name" field.

func EngineNameIn

func EngineNameIn(vs ...string) predicate.VisitLog

EngineNameIn applies the In predicate on the "engine_name" field.

func EngineNameLT

func EngineNameLT(v string) predicate.VisitLog

EngineNameLT applies the LT predicate on the "engine_name" field.

func EngineNameLTE

func EngineNameLTE(v string) predicate.VisitLog

EngineNameLTE applies the LTE predicate on the "engine_name" field.

func EngineNameNEQ

func EngineNameNEQ(v string) predicate.VisitLog

EngineNameNEQ applies the NEQ predicate on the "engine_name" field.

func EngineNameNotIn

func EngineNameNotIn(vs ...string) predicate.VisitLog

EngineNameNotIn applies the NotIn predicate on the "engine_name" field.

func EngineVersion

func EngineVersion(v string) predicate.VisitLog

EngineVersion applies equality check predicate on the "engine_version" field. It's identical to EngineVersionEQ.

func EngineVersionContains

func EngineVersionContains(v string) predicate.VisitLog

EngineVersionContains applies the Contains predicate on the "engine_version" field.

func EngineVersionContainsFold

func EngineVersionContainsFold(v string) predicate.VisitLog

EngineVersionContainsFold applies the ContainsFold predicate on the "engine_version" field.

func EngineVersionEQ

func EngineVersionEQ(v string) predicate.VisitLog

EngineVersionEQ applies the EQ predicate on the "engine_version" field.

func EngineVersionEqualFold

func EngineVersionEqualFold(v string) predicate.VisitLog

EngineVersionEqualFold applies the EqualFold predicate on the "engine_version" field.

func EngineVersionGT

func EngineVersionGT(v string) predicate.VisitLog

EngineVersionGT applies the GT predicate on the "engine_version" field.

func EngineVersionGTE

func EngineVersionGTE(v string) predicate.VisitLog

EngineVersionGTE applies the GTE predicate on the "engine_version" field.

func EngineVersionHasPrefix

func EngineVersionHasPrefix(v string) predicate.VisitLog

EngineVersionHasPrefix applies the HasPrefix predicate on the "engine_version" field.

func EngineVersionHasSuffix

func EngineVersionHasSuffix(v string) predicate.VisitLog

EngineVersionHasSuffix applies the HasSuffix predicate on the "engine_version" field.

func EngineVersionIn

func EngineVersionIn(vs ...string) predicate.VisitLog

EngineVersionIn applies the In predicate on the "engine_version" field.

func EngineVersionLT

func EngineVersionLT(v string) predicate.VisitLog

EngineVersionLT applies the LT predicate on the "engine_version" field.

func EngineVersionLTE

func EngineVersionLTE(v string) predicate.VisitLog

EngineVersionLTE applies the LTE predicate on the "engine_version" field.

func EngineVersionNEQ

func EngineVersionNEQ(v string) predicate.VisitLog

EngineVersionNEQ applies the NEQ predicate on the "engine_version" field.

func EngineVersionNotIn

func EngineVersionNotIn(vs ...string) predicate.VisitLog

EngineVersionNotIn applies the NotIn predicate on the "engine_version" field.

func HasURL

func HasURL() predicate.VisitLog

HasURL applies the HasEdge predicate on the "url" edge.

func HasURLWith

func HasURLWith(preds ...predicate.Url) predicate.VisitLog

HasURLWith applies the HasEdge predicate on the "url" edge with a given conditions (other predicates).

func ID

func ID(id int) predicate.VisitLog

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id int) predicate.VisitLog

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id int) predicate.VisitLog

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id int) predicate.VisitLog

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...int) predicate.VisitLog

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id int) predicate.VisitLog

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id int) predicate.VisitLog

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id int) predicate.VisitLog

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...int) predicate.VisitLog

IDNotIn applies the NotIn predicate on the ID field.

func IP

IP applies equality check predicate on the "ip" field. It's identical to IPEQ.

func IPContains

func IPContains(v string) predicate.VisitLog

IPContains applies the Contains predicate on the "ip" field.

func IPContainsFold

func IPContainsFold(v string) predicate.VisitLog

IPContainsFold applies the ContainsFold predicate on the "ip" field.

func IPEQ

func IPEQ(v string) predicate.VisitLog

IPEQ applies the EQ predicate on the "ip" field.

func IPEqualFold

func IPEqualFold(v string) predicate.VisitLog

IPEqualFold applies the EqualFold predicate on the "ip" field.

func IPGT

func IPGT(v string) predicate.VisitLog

IPGT applies the GT predicate on the "ip" field.

func IPGTE

func IPGTE(v string) predicate.VisitLog

IPGTE applies the GTE predicate on the "ip" field.

func IPHasPrefix

func IPHasPrefix(v string) predicate.VisitLog

IPHasPrefix applies the HasPrefix predicate on the "ip" field.

func IPHasSuffix

func IPHasSuffix(v string) predicate.VisitLog

IPHasSuffix applies the HasSuffix predicate on the "ip" field.

func IPIn

func IPIn(vs ...string) predicate.VisitLog

IPIn applies the In predicate on the "ip" field.

func IPLT

func IPLT(v string) predicate.VisitLog

IPLT applies the LT predicate on the "ip" field.

func IPLTE

func IPLTE(v string) predicate.VisitLog

IPLTE applies the LTE predicate on the "ip" field.

func IPNEQ

func IPNEQ(v string) predicate.VisitLog

IPNEQ applies the NEQ predicate on the "ip" field.

func IPNotIn

func IPNotIn(vs ...string) predicate.VisitLog

IPNotIn applies the NotIn predicate on the "ip" field.

func Mobile

func Mobile(v bool) predicate.VisitLog

Mobile applies equality check predicate on the "mobile" field. It's identical to MobileEQ.

func MobileEQ

func MobileEQ(v bool) predicate.VisitLog

MobileEQ applies the EQ predicate on the "mobile" field.

func MobileNEQ

func MobileNEQ(v bool) predicate.VisitLog

MobileNEQ applies the NEQ predicate on the "mobile" field.

func Mozilla

func Mozilla(v string) predicate.VisitLog

Mozilla applies equality check predicate on the "mozilla" field. It's identical to MozillaEQ.

func MozillaContains

func MozillaContains(v string) predicate.VisitLog

MozillaContains applies the Contains predicate on the "mozilla" field.

func MozillaContainsFold

func MozillaContainsFold(v string) predicate.VisitLog

MozillaContainsFold applies the ContainsFold predicate on the "mozilla" field.

func MozillaEQ

func MozillaEQ(v string) predicate.VisitLog

MozillaEQ applies the EQ predicate on the "mozilla" field.

func MozillaEqualFold

func MozillaEqualFold(v string) predicate.VisitLog

MozillaEqualFold applies the EqualFold predicate on the "mozilla" field.

func MozillaGT

func MozillaGT(v string) predicate.VisitLog

MozillaGT applies the GT predicate on the "mozilla" field.

func MozillaGTE

func MozillaGTE(v string) predicate.VisitLog

MozillaGTE applies the GTE predicate on the "mozilla" field.

func MozillaHasPrefix

func MozillaHasPrefix(v string) predicate.VisitLog

MozillaHasPrefix applies the HasPrefix predicate on the "mozilla" field.

func MozillaHasSuffix

func MozillaHasSuffix(v string) predicate.VisitLog

MozillaHasSuffix applies the HasSuffix predicate on the "mozilla" field.

func MozillaIn

func MozillaIn(vs ...string) predicate.VisitLog

MozillaIn applies the In predicate on the "mozilla" field.

func MozillaLT

func MozillaLT(v string) predicate.VisitLog

MozillaLT applies the LT predicate on the "mozilla" field.

func MozillaLTE

func MozillaLTE(v string) predicate.VisitLog

MozillaLTE applies the LTE predicate on the "mozilla" field.

func MozillaNEQ

func MozillaNEQ(v string) predicate.VisitLog

MozillaNEQ applies the NEQ predicate on the "mozilla" field.

func MozillaNotIn

func MozillaNotIn(vs ...string) predicate.VisitLog

MozillaNotIn applies the NotIn predicate on the "mozilla" field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.VisitLog) predicate.VisitLog

Or groups predicates with the OR operator between them.

func Os

Os applies equality check predicate on the "os" field. It's identical to OsEQ.

func OsContains

func OsContains(v string) predicate.VisitLog

OsContains applies the Contains predicate on the "os" field.

func OsContainsFold

func OsContainsFold(v string) predicate.VisitLog

OsContainsFold applies the ContainsFold predicate on the "os" field.

func OsEQ

func OsEQ(v string) predicate.VisitLog

OsEQ applies the EQ predicate on the "os" field.

func OsEqualFold

func OsEqualFold(v string) predicate.VisitLog

OsEqualFold applies the EqualFold predicate on the "os" field.

func OsGT

func OsGT(v string) predicate.VisitLog

OsGT applies the GT predicate on the "os" field.

func OsGTE

func OsGTE(v string) predicate.VisitLog

OsGTE applies the GTE predicate on the "os" field.

func OsHasPrefix

func OsHasPrefix(v string) predicate.VisitLog

OsHasPrefix applies the HasPrefix predicate on the "os" field.

func OsHasSuffix

func OsHasSuffix(v string) predicate.VisitLog

OsHasSuffix applies the HasSuffix predicate on the "os" field.

func OsIn

func OsIn(vs ...string) predicate.VisitLog

OsIn applies the In predicate on the "os" field.

func OsLT

func OsLT(v string) predicate.VisitLog

OsLT applies the LT predicate on the "os" field.

func OsLTE

func OsLTE(v string) predicate.VisitLog

OsLTE applies the LTE predicate on the "os" field.

func OsNEQ

func OsNEQ(v string) predicate.VisitLog

OsNEQ applies the NEQ predicate on the "os" field.

func OsNotIn

func OsNotIn(vs ...string) predicate.VisitLog

OsNotIn applies the NotIn predicate on the "os" field.

func Platform

func Platform(v string) predicate.VisitLog

Platform applies equality check predicate on the "platform" field. It's identical to PlatformEQ.

func PlatformContains

func PlatformContains(v string) predicate.VisitLog

PlatformContains applies the Contains predicate on the "platform" field.

func PlatformContainsFold

func PlatformContainsFold(v string) predicate.VisitLog

PlatformContainsFold applies the ContainsFold predicate on the "platform" field.

func PlatformEQ

func PlatformEQ(v string) predicate.VisitLog

PlatformEQ applies the EQ predicate on the "platform" field.

func PlatformEqualFold

func PlatformEqualFold(v string) predicate.VisitLog

PlatformEqualFold applies the EqualFold predicate on the "platform" field.

func PlatformGT

func PlatformGT(v string) predicate.VisitLog

PlatformGT applies the GT predicate on the "platform" field.

func PlatformGTE

func PlatformGTE(v string) predicate.VisitLog

PlatformGTE applies the GTE predicate on the "platform" field.

func PlatformHasPrefix

func PlatformHasPrefix(v string) predicate.VisitLog

PlatformHasPrefix applies the HasPrefix predicate on the "platform" field.

func PlatformHasSuffix

func PlatformHasSuffix(v string) predicate.VisitLog

PlatformHasSuffix applies the HasSuffix predicate on the "platform" field.

func PlatformIn

func PlatformIn(vs ...string) predicate.VisitLog

PlatformIn applies the In predicate on the "platform" field.

func PlatformLT

func PlatformLT(v string) predicate.VisitLog

PlatformLT applies the LT predicate on the "platform" field.

func PlatformLTE

func PlatformLTE(v string) predicate.VisitLog

PlatformLTE applies the LTE predicate on the "platform" field.

func PlatformNEQ

func PlatformNEQ(v string) predicate.VisitLog

PlatformNEQ applies the NEQ predicate on the "platform" field.

func PlatformNotIn

func PlatformNotIn(vs ...string) predicate.VisitLog

PlatformNotIn applies the NotIn predicate on the "platform" field.

func Referer

func Referer(v string) predicate.VisitLog

Referer applies equality check predicate on the "referer" field. It's identical to RefererEQ.

func RefererContains

func RefererContains(v string) predicate.VisitLog

RefererContains applies the Contains predicate on the "referer" field.

func RefererContainsFold

func RefererContainsFold(v string) predicate.VisitLog

RefererContainsFold applies the ContainsFold predicate on the "referer" field.

func RefererEQ

func RefererEQ(v string) predicate.VisitLog

RefererEQ applies the EQ predicate on the "referer" field.

func RefererEqualFold

func RefererEqualFold(v string) predicate.VisitLog

RefererEqualFold applies the EqualFold predicate on the "referer" field.

func RefererGT

func RefererGT(v string) predicate.VisitLog

RefererGT applies the GT predicate on the "referer" field.

func RefererGTE

func RefererGTE(v string) predicate.VisitLog

RefererGTE applies the GTE predicate on the "referer" field.

func RefererHasPrefix

func RefererHasPrefix(v string) predicate.VisitLog

RefererHasPrefix applies the HasPrefix predicate on the "referer" field.

func RefererHasSuffix

func RefererHasSuffix(v string) predicate.VisitLog

RefererHasSuffix applies the HasSuffix predicate on the "referer" field.

func RefererIn

func RefererIn(vs ...string) predicate.VisitLog

RefererIn applies the In predicate on the "referer" field.

func RefererLT

func RefererLT(v string) predicate.VisitLog

RefererLT applies the LT predicate on the "referer" field.

func RefererLTE

func RefererLTE(v string) predicate.VisitLog

RefererLTE applies the LTE predicate on the "referer" field.

func RefererNEQ

func RefererNEQ(v string) predicate.VisitLog

RefererNEQ applies the NEQ predicate on the "referer" field.

func RefererNotIn

func RefererNotIn(vs ...string) predicate.VisitLog

RefererNotIn applies the NotIn predicate on the "referer" field.

func ValidColumn

func ValidColumn(column string) bool

ValidColumn reports if the column name is valid (part of the table columns).

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL