Documentation
¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.IPBlackList) predicate.IPBlackList
- func CreatedAt(v time.Time) predicate.IPBlackList
- func CreatedAtEQ(v time.Time) predicate.IPBlackList
- func CreatedAtGT(v time.Time) predicate.IPBlackList
- func CreatedAtGTE(v time.Time) predicate.IPBlackList
- func CreatedAtIn(vs ...time.Time) predicate.IPBlackList
- func CreatedAtLT(v time.Time) predicate.IPBlackList
- func CreatedAtLTE(v time.Time) predicate.IPBlackList
- func CreatedAtNEQ(v time.Time) predicate.IPBlackList
- func CreatedAtNotIn(vs ...time.Time) predicate.IPBlackList
- func ID(id uuid.UUID) predicate.IPBlackList
- func IDEQ(id uuid.UUID) predicate.IPBlackList
- func IDGT(id uuid.UUID) predicate.IPBlackList
- func IDGTE(id uuid.UUID) predicate.IPBlackList
- func IDIn(ids ...uuid.UUID) predicate.IPBlackList
- func IDLT(id uuid.UUID) predicate.IPBlackList
- func IDLTE(id uuid.UUID) predicate.IPBlackList
- func IDNEQ(id uuid.UUID) predicate.IPBlackList
- func IDNotIn(ids ...uuid.UUID) predicate.IPBlackList
- func IP(v string) predicate.IPBlackList
- func IPContains(v string) predicate.IPBlackList
- func IPContainsFold(v string) predicate.IPBlackList
- func IPEQ(v string) predicate.IPBlackList
- func IPEqualFold(v string) predicate.IPBlackList
- func IPGT(v string) predicate.IPBlackList
- func IPGTE(v string) predicate.IPBlackList
- func IPHasPrefix(v string) predicate.IPBlackList
- func IPHasSuffix(v string) predicate.IPBlackList
- func IPIn(vs ...string) predicate.IPBlackList
- func IPLT(v string) predicate.IPBlackList
- func IPLTE(v string) predicate.IPBlackList
- func IPNEQ(v string) predicate.IPBlackList
- func IPNotIn(vs ...string) predicate.IPBlackList
- func Not(p predicate.IPBlackList) predicate.IPBlackList
- func Or(predicates ...predicate.IPBlackList) predicate.IPBlackList
- func UpdatedAt(v time.Time) predicate.IPBlackList
- func UpdatedAtEQ(v time.Time) predicate.IPBlackList
- func UpdatedAtGT(v time.Time) predicate.IPBlackList
- func UpdatedAtGTE(v time.Time) predicate.IPBlackList
- func UpdatedAtIn(vs ...time.Time) predicate.IPBlackList
- func UpdatedAtLT(v time.Time) predicate.IPBlackList
- func UpdatedAtLTE(v time.Time) predicate.IPBlackList
- func UpdatedAtNEQ(v time.Time) predicate.IPBlackList
- func UpdatedAtNotIn(vs ...time.Time) predicate.IPBlackList
- func ValidColumn(column string) bool
- type OrderOption
Constants ¶
const ( // Label holds the string label denoting the ipblacklist type in the database. Label = "ip_black_list" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldIP holds the string denoting the ip field in the database. FieldIP = "ip" // FieldCreatedAt holds the string denoting the created_at field in the database. FieldCreatedAt = "created_at" // FieldUpdatedAt holds the string denoting the updated_at field in the database. FieldUpdatedAt = "updated_at" // Table holds the table name of the ipblacklist in the database. Table = "ip_blacklist" )
Variables ¶
var ( // DefaultCreatedAt holds the default value on creation for the "created_at" field. DefaultCreatedAt func() time.Time // DefaultUpdatedAt holds the default value on creation for the "updated_at" field. DefaultUpdatedAt func() time.Time // UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field. UpdateDefaultUpdatedAt func() time.Time // DefaultID holds the default value on creation for the "id" field. DefaultID func() uuid.UUID )
var Columns = []string{ FieldID, FieldIP, FieldCreatedAt, FieldUpdatedAt, }
Columns holds all SQL columns for ipblacklist fields.
Functions ¶
func And ¶
func And(predicates ...predicate.IPBlackList) predicate.IPBlackList
And groups predicates with the AND operator between them.
func CreatedAt ¶
func CreatedAt(v time.Time) predicate.IPBlackList
CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
func CreatedAtEQ ¶
func CreatedAtEQ(v time.Time) predicate.IPBlackList
CreatedAtEQ applies the EQ predicate on the "created_at" field.
func CreatedAtGT ¶
func CreatedAtGT(v time.Time) predicate.IPBlackList
CreatedAtGT applies the GT predicate on the "created_at" field.
func CreatedAtGTE ¶
func CreatedAtGTE(v time.Time) predicate.IPBlackList
CreatedAtGTE applies the GTE predicate on the "created_at" field.
func CreatedAtIn ¶
func CreatedAtIn(vs ...time.Time) predicate.IPBlackList
CreatedAtIn applies the In predicate on the "created_at" field.
func CreatedAtLT ¶
func CreatedAtLT(v time.Time) predicate.IPBlackList
CreatedAtLT applies the LT predicate on the "created_at" field.
func CreatedAtLTE ¶
func CreatedAtLTE(v time.Time) predicate.IPBlackList
CreatedAtLTE applies the LTE predicate on the "created_at" field.
func CreatedAtNEQ ¶
func CreatedAtNEQ(v time.Time) predicate.IPBlackList
CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
func CreatedAtNotIn ¶
func CreatedAtNotIn(vs ...time.Time) predicate.IPBlackList
CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
func IDEQ ¶
func IDEQ(id uuid.UUID) predicate.IPBlackList
IDEQ applies the EQ predicate on the ID field.
func IDGT ¶
func IDGT(id uuid.UUID) predicate.IPBlackList
IDGT applies the GT predicate on the ID field.
func IDGTE ¶
func IDGTE(id uuid.UUID) predicate.IPBlackList
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...uuid.UUID) predicate.IPBlackList
IDIn applies the In predicate on the ID field.
func IDLT ¶
func IDLT(id uuid.UUID) predicate.IPBlackList
IDLT applies the LT predicate on the ID field.
func IDLTE ¶
func IDLTE(id uuid.UUID) predicate.IPBlackList
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id uuid.UUID) predicate.IPBlackList
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...uuid.UUID) predicate.IPBlackList
IDNotIn applies the NotIn predicate on the ID field.
func IP ¶
func IP(v string) predicate.IPBlackList
IP applies equality check predicate on the "ip" field. It's identical to IPEQ.
func IPContains ¶
func IPContains(v string) predicate.IPBlackList
IPContains applies the Contains predicate on the "ip" field.
func IPContainsFold ¶
func IPContainsFold(v string) predicate.IPBlackList
IPContainsFold applies the ContainsFold predicate on the "ip" field.
func IPEQ ¶
func IPEQ(v string) predicate.IPBlackList
IPEQ applies the EQ predicate on the "ip" field.
func IPEqualFold ¶
func IPEqualFold(v string) predicate.IPBlackList
IPEqualFold applies the EqualFold predicate on the "ip" field.
func IPGT ¶
func IPGT(v string) predicate.IPBlackList
IPGT applies the GT predicate on the "ip" field.
func IPGTE ¶
func IPGTE(v string) predicate.IPBlackList
IPGTE applies the GTE predicate on the "ip" field.
func IPHasPrefix ¶
func IPHasPrefix(v string) predicate.IPBlackList
IPHasPrefix applies the HasPrefix predicate on the "ip" field.
func IPHasSuffix ¶
func IPHasSuffix(v string) predicate.IPBlackList
IPHasSuffix applies the HasSuffix predicate on the "ip" field.
func IPIn ¶
func IPIn(vs ...string) predicate.IPBlackList
IPIn applies the In predicate on the "ip" field.
func IPLT ¶
func IPLT(v string) predicate.IPBlackList
IPLT applies the LT predicate on the "ip" field.
func IPLTE ¶
func IPLTE(v string) predicate.IPBlackList
IPLTE applies the LTE predicate on the "ip" field.
func IPNEQ ¶
func IPNEQ(v string) predicate.IPBlackList
IPNEQ applies the NEQ predicate on the "ip" field.
func IPNotIn ¶
func IPNotIn(vs ...string) predicate.IPBlackList
IPNotIn applies the NotIn predicate on the "ip" field.
func Not ¶
func Not(p predicate.IPBlackList) predicate.IPBlackList
Not applies the not operator on the given predicate.
func Or ¶
func Or(predicates ...predicate.IPBlackList) predicate.IPBlackList
Or groups predicates with the OR operator between them.
func UpdatedAt ¶
func UpdatedAt(v time.Time) predicate.IPBlackList
UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.
func UpdatedAtEQ ¶
func UpdatedAtEQ(v time.Time) predicate.IPBlackList
UpdatedAtEQ applies the EQ predicate on the "updated_at" field.
func UpdatedAtGT ¶
func UpdatedAtGT(v time.Time) predicate.IPBlackList
UpdatedAtGT applies the GT predicate on the "updated_at" field.
func UpdatedAtGTE ¶
func UpdatedAtGTE(v time.Time) predicate.IPBlackList
UpdatedAtGTE applies the GTE predicate on the "updated_at" field.
func UpdatedAtIn ¶
func UpdatedAtIn(vs ...time.Time) predicate.IPBlackList
UpdatedAtIn applies the In predicate on the "updated_at" field.
func UpdatedAtLT ¶
func UpdatedAtLT(v time.Time) predicate.IPBlackList
UpdatedAtLT applies the LT predicate on the "updated_at" field.
func UpdatedAtLTE ¶
func UpdatedAtLTE(v time.Time) predicate.IPBlackList
UpdatedAtLTE applies the LTE predicate on the "updated_at" field.
func UpdatedAtNEQ ¶
func UpdatedAtNEQ(v time.Time) predicate.IPBlackList
UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.
func UpdatedAtNotIn ¶
func UpdatedAtNotIn(vs ...time.Time) predicate.IPBlackList
UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
Types ¶
type OrderOption ¶
OrderOption defines the ordering options for the IPBlackList queries.
func ByCreatedAt ¶
func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption
ByCreatedAt orders the results by the created_at field.
func ByID ¶
func ByID(opts ...sql.OrderTermOption) OrderOption
ByID orders the results by the id field.
func ByIP ¶
func ByIP(opts ...sql.OrderTermOption) OrderOption
ByIP orders the results by the ip field.
func ByUpdatedAt ¶
func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption
ByUpdatedAt orders the results by the updated_at field.