ent schema post generation
This commit is contained in:
80
ent/account/account.go
Normal file
80
ent/account/account.go
Normal file
@ -0,0 +1,80 @@
|
||||
// Code generated by entc, DO NOT EDIT.
|
||||
|
||||
package account
|
||||
|
||||
import (
|
||||
"time"
|
||||
)
|
||||
|
||||
const (
|
||||
// Label holds the string label denoting the account type in the database.
|
||||
Label = "account"
|
||||
// FieldID holds the string denoting the id field in the database.
|
||||
FieldID = "id"
|
||||
// FieldCreated holds the string denoting the created field in the database.
|
||||
FieldCreated = "created"
|
||||
// FieldModified holds the string denoting the modified field in the database.
|
||||
FieldModified = "modified"
|
||||
// FieldUsername holds the string denoting the username field in the database.
|
||||
FieldUsername = "username"
|
||||
// FieldPassword holds the string denoting the password field in the database.
|
||||
FieldPassword = "password"
|
||||
// FieldSuper holds the string denoting the super field in the database.
|
||||
FieldSuper = "super"
|
||||
// FieldActive holds the string denoting the active field in the database.
|
||||
FieldActive = "active"
|
||||
// EdgeDomains holds the string denoting the domains edge name in mutations.
|
||||
EdgeDomains = "domains"
|
||||
// EdgeLogs holds the string denoting the logs edge name in mutations.
|
||||
EdgeLogs = "logs"
|
||||
// Table holds the table name of the account in the database.
|
||||
Table = "accounts"
|
||||
// DomainsTable is the table that holds the domains relation/edge. The primary key declared below.
|
||||
DomainsTable = "account_domains"
|
||||
// DomainsInverseTable is the table name for the Domain entity.
|
||||
// It exists in this package in order to avoid circular dependency with the "domain" package.
|
||||
DomainsInverseTable = "domains"
|
||||
// LogsTable is the table that holds the logs relation/edge.
|
||||
LogsTable = "logentries"
|
||||
// LogsInverseTable is the table name for the Logentry entity.
|
||||
// It exists in this package in order to avoid circular dependency with the "logentry" package.
|
||||
LogsInverseTable = "logentries"
|
||||
// LogsColumn is the table column denoting the logs relation/edge.
|
||||
LogsColumn = "account_id"
|
||||
)
|
||||
|
||||
// Columns holds all SQL columns for account fields.
|
||||
var Columns = []string{
|
||||
FieldID,
|
||||
FieldCreated,
|
||||
FieldModified,
|
||||
FieldUsername,
|
||||
FieldPassword,
|
||||
FieldSuper,
|
||||
FieldActive,
|
||||
}
|
||||
|
||||
var (
|
||||
// DomainsPrimaryKey and DomainsColumn2 are the table columns denoting the
|
||||
// primary key for the domains relation (M2M).
|
||||
DomainsPrimaryKey = []string{"account_id", "domain_id"}
|
||||
)
|
||||
|
||||
// ValidColumn reports if the column name is valid (part of the table columns).
|
||||
func ValidColumn(column string) bool {
|
||||
for i := range Columns {
|
||||
if column == Columns[i] {
|
||||
return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
var (
|
||||
// DefaultCreated holds the default value on creation for the "created" field.
|
||||
DefaultCreated func() time.Time
|
||||
// DefaultModified holds the default value on creation for the "modified" field.
|
||||
DefaultModified func() time.Time
|
||||
// UpdateDefaultModified holds the default value on update for the "modified" field.
|
||||
UpdateDefaultModified func() time.Time
|
||||
)
|
605
ent/account/where.go
Normal file
605
ent/account/where.go
Normal file
@ -0,0 +1,605 @@
|
||||
// Code generated by entc, DO NOT EDIT.
|
||||
|
||||
package account
|
||||
|
||||
import (
|
||||
"time"
|
||||
|
||||
"code.icod.de/postfix/manager/ent/predicate"
|
||||
"entgo.io/ent/dialect/sql"
|
||||
"entgo.io/ent/dialect/sql/sqlgraph"
|
||||
)
|
||||
|
||||
// ID filters vertices based on their ID field.
|
||||
func ID(id int64) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldID), id))
|
||||
})
|
||||
}
|
||||
|
||||
// IDEQ applies the EQ predicate on the ID field.
|
||||
func IDEQ(id int64) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldID), id))
|
||||
})
|
||||
}
|
||||
|
||||
// IDNEQ applies the NEQ predicate on the ID field.
|
||||
func IDNEQ(id int64) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.NEQ(s.C(FieldID), id))
|
||||
})
|
||||
}
|
||||
|
||||
// IDIn applies the In predicate on the ID field.
|
||||
func IDIn(ids ...int64) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(ids) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
v := make([]interface{}, len(ids))
|
||||
for i := range v {
|
||||
v[i] = ids[i]
|
||||
}
|
||||
s.Where(sql.In(s.C(FieldID), v...))
|
||||
})
|
||||
}
|
||||
|
||||
// IDNotIn applies the NotIn predicate on the ID field.
|
||||
func IDNotIn(ids ...int64) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(ids) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
v := make([]interface{}, len(ids))
|
||||
for i := range v {
|
||||
v[i] = ids[i]
|
||||
}
|
||||
s.Where(sql.NotIn(s.C(FieldID), v...))
|
||||
})
|
||||
}
|
||||
|
||||
// IDGT applies the GT predicate on the ID field.
|
||||
func IDGT(id int64) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.GT(s.C(FieldID), id))
|
||||
})
|
||||
}
|
||||
|
||||
// IDGTE applies the GTE predicate on the ID field.
|
||||
func IDGTE(id int64) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.GTE(s.C(FieldID), id))
|
||||
})
|
||||
}
|
||||
|
||||
// IDLT applies the LT predicate on the ID field.
|
||||
func IDLT(id int64) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.LT(s.C(FieldID), id))
|
||||
})
|
||||
}
|
||||
|
||||
// IDLTE applies the LTE predicate on the ID field.
|
||||
func IDLTE(id int64) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.LTE(s.C(FieldID), id))
|
||||
})
|
||||
}
|
||||
|
||||
// Created applies equality check predicate on the "created" field. It's identical to CreatedEQ.
|
||||
func Created(v time.Time) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldCreated), v))
|
||||
})
|
||||
}
|
||||
|
||||
// Modified applies equality check predicate on the "modified" field. It's identical to ModifiedEQ.
|
||||
func Modified(v time.Time) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldModified), v))
|
||||
})
|
||||
}
|
||||
|
||||
// Username applies equality check predicate on the "username" field. It's identical to UsernameEQ.
|
||||
func Username(v string) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldUsername), v))
|
||||
})
|
||||
}
|
||||
|
||||
// Password applies equality check predicate on the "password" field. It's identical to PasswordEQ.
|
||||
func Password(v []byte) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldPassword), v))
|
||||
})
|
||||
}
|
||||
|
||||
// Super applies equality check predicate on the "super" field. It's identical to SuperEQ.
|
||||
func Super(v bool) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldSuper), v))
|
||||
})
|
||||
}
|
||||
|
||||
// Active applies equality check predicate on the "active" field. It's identical to ActiveEQ.
|
||||
func Active(v bool) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldActive), v))
|
||||
})
|
||||
}
|
||||
|
||||
// CreatedEQ applies the EQ predicate on the "created" field.
|
||||
func CreatedEQ(v time.Time) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldCreated), v))
|
||||
})
|
||||
}
|
||||
|
||||
// CreatedNEQ applies the NEQ predicate on the "created" field.
|
||||
func CreatedNEQ(v time.Time) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.NEQ(s.C(FieldCreated), v))
|
||||
})
|
||||
}
|
||||
|
||||
// CreatedIn applies the In predicate on the "created" field.
|
||||
func CreatedIn(vs ...time.Time) predicate.Account {
|
||||
v := make([]interface{}, len(vs))
|
||||
for i := range v {
|
||||
v[i] = vs[i]
|
||||
}
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(v) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
s.Where(sql.In(s.C(FieldCreated), v...))
|
||||
})
|
||||
}
|
||||
|
||||
// CreatedNotIn applies the NotIn predicate on the "created" field.
|
||||
func CreatedNotIn(vs ...time.Time) predicate.Account {
|
||||
v := make([]interface{}, len(vs))
|
||||
for i := range v {
|
||||
v[i] = vs[i]
|
||||
}
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(v) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
s.Where(sql.NotIn(s.C(FieldCreated), v...))
|
||||
})
|
||||
}
|
||||
|
||||
// CreatedGT applies the GT predicate on the "created" field.
|
||||
func CreatedGT(v time.Time) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.GT(s.C(FieldCreated), v))
|
||||
})
|
||||
}
|
||||
|
||||
// CreatedGTE applies the GTE predicate on the "created" field.
|
||||
func CreatedGTE(v time.Time) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.GTE(s.C(FieldCreated), v))
|
||||
})
|
||||
}
|
||||
|
||||
// CreatedLT applies the LT predicate on the "created" field.
|
||||
func CreatedLT(v time.Time) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.LT(s.C(FieldCreated), v))
|
||||
})
|
||||
}
|
||||
|
||||
// CreatedLTE applies the LTE predicate on the "created" field.
|
||||
func CreatedLTE(v time.Time) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.LTE(s.C(FieldCreated), v))
|
||||
})
|
||||
}
|
||||
|
||||
// ModifiedEQ applies the EQ predicate on the "modified" field.
|
||||
func ModifiedEQ(v time.Time) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldModified), v))
|
||||
})
|
||||
}
|
||||
|
||||
// ModifiedNEQ applies the NEQ predicate on the "modified" field.
|
||||
func ModifiedNEQ(v time.Time) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.NEQ(s.C(FieldModified), v))
|
||||
})
|
||||
}
|
||||
|
||||
// ModifiedIn applies the In predicate on the "modified" field.
|
||||
func ModifiedIn(vs ...time.Time) predicate.Account {
|
||||
v := make([]interface{}, len(vs))
|
||||
for i := range v {
|
||||
v[i] = vs[i]
|
||||
}
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(v) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
s.Where(sql.In(s.C(FieldModified), v...))
|
||||
})
|
||||
}
|
||||
|
||||
// ModifiedNotIn applies the NotIn predicate on the "modified" field.
|
||||
func ModifiedNotIn(vs ...time.Time) predicate.Account {
|
||||
v := make([]interface{}, len(vs))
|
||||
for i := range v {
|
||||
v[i] = vs[i]
|
||||
}
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(v) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
s.Where(sql.NotIn(s.C(FieldModified), v...))
|
||||
})
|
||||
}
|
||||
|
||||
// ModifiedGT applies the GT predicate on the "modified" field.
|
||||
func ModifiedGT(v time.Time) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.GT(s.C(FieldModified), v))
|
||||
})
|
||||
}
|
||||
|
||||
// ModifiedGTE applies the GTE predicate on the "modified" field.
|
||||
func ModifiedGTE(v time.Time) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.GTE(s.C(FieldModified), v))
|
||||
})
|
||||
}
|
||||
|
||||
// ModifiedLT applies the LT predicate on the "modified" field.
|
||||
func ModifiedLT(v time.Time) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.LT(s.C(FieldModified), v))
|
||||
})
|
||||
}
|
||||
|
||||
// ModifiedLTE applies the LTE predicate on the "modified" field.
|
||||
func ModifiedLTE(v time.Time) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.LTE(s.C(FieldModified), v))
|
||||
})
|
||||
}
|
||||
|
||||
// ModifiedIsNil applies the IsNil predicate on the "modified" field.
|
||||
func ModifiedIsNil() predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.IsNull(s.C(FieldModified)))
|
||||
})
|
||||
}
|
||||
|
||||
// ModifiedNotNil applies the NotNil predicate on the "modified" field.
|
||||
func ModifiedNotNil() predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.NotNull(s.C(FieldModified)))
|
||||
})
|
||||
}
|
||||
|
||||
// UsernameEQ applies the EQ predicate on the "username" field.
|
||||
func UsernameEQ(v string) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldUsername), v))
|
||||
})
|
||||
}
|
||||
|
||||
// UsernameNEQ applies the NEQ predicate on the "username" field.
|
||||
func UsernameNEQ(v string) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.NEQ(s.C(FieldUsername), v))
|
||||
})
|
||||
}
|
||||
|
||||
// UsernameIn applies the In predicate on the "username" field.
|
||||
func UsernameIn(vs ...string) predicate.Account {
|
||||
v := make([]interface{}, len(vs))
|
||||
for i := range v {
|
||||
v[i] = vs[i]
|
||||
}
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(v) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
s.Where(sql.In(s.C(FieldUsername), v...))
|
||||
})
|
||||
}
|
||||
|
||||
// UsernameNotIn applies the NotIn predicate on the "username" field.
|
||||
func UsernameNotIn(vs ...string) predicate.Account {
|
||||
v := make([]interface{}, len(vs))
|
||||
for i := range v {
|
||||
v[i] = vs[i]
|
||||
}
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(v) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
s.Where(sql.NotIn(s.C(FieldUsername), v...))
|
||||
})
|
||||
}
|
||||
|
||||
// UsernameGT applies the GT predicate on the "username" field.
|
||||
func UsernameGT(v string) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.GT(s.C(FieldUsername), v))
|
||||
})
|
||||
}
|
||||
|
||||
// UsernameGTE applies the GTE predicate on the "username" field.
|
||||
func UsernameGTE(v string) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.GTE(s.C(FieldUsername), v))
|
||||
})
|
||||
}
|
||||
|
||||
// UsernameLT applies the LT predicate on the "username" field.
|
||||
func UsernameLT(v string) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.LT(s.C(FieldUsername), v))
|
||||
})
|
||||
}
|
||||
|
||||
// UsernameLTE applies the LTE predicate on the "username" field.
|
||||
func UsernameLTE(v string) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.LTE(s.C(FieldUsername), v))
|
||||
})
|
||||
}
|
||||
|
||||
// UsernameContains applies the Contains predicate on the "username" field.
|
||||
func UsernameContains(v string) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.Contains(s.C(FieldUsername), v))
|
||||
})
|
||||
}
|
||||
|
||||
// UsernameHasPrefix applies the HasPrefix predicate on the "username" field.
|
||||
func UsernameHasPrefix(v string) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.HasPrefix(s.C(FieldUsername), v))
|
||||
})
|
||||
}
|
||||
|
||||
// UsernameHasSuffix applies the HasSuffix predicate on the "username" field.
|
||||
func UsernameHasSuffix(v string) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.HasSuffix(s.C(FieldUsername), v))
|
||||
})
|
||||
}
|
||||
|
||||
// UsernameEqualFold applies the EqualFold predicate on the "username" field.
|
||||
func UsernameEqualFold(v string) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.EqualFold(s.C(FieldUsername), v))
|
||||
})
|
||||
}
|
||||
|
||||
// UsernameContainsFold applies the ContainsFold predicate on the "username" field.
|
||||
func UsernameContainsFold(v string) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.ContainsFold(s.C(FieldUsername), v))
|
||||
})
|
||||
}
|
||||
|
||||
// PasswordEQ applies the EQ predicate on the "password" field.
|
||||
func PasswordEQ(v []byte) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldPassword), v))
|
||||
})
|
||||
}
|
||||
|
||||
// PasswordNEQ applies the NEQ predicate on the "password" field.
|
||||
func PasswordNEQ(v []byte) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.NEQ(s.C(FieldPassword), v))
|
||||
})
|
||||
}
|
||||
|
||||
// PasswordIn applies the In predicate on the "password" field.
|
||||
func PasswordIn(vs ...[]byte) predicate.Account {
|
||||
v := make([]interface{}, len(vs))
|
||||
for i := range v {
|
||||
v[i] = vs[i]
|
||||
}
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(v) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
s.Where(sql.In(s.C(FieldPassword), v...))
|
||||
})
|
||||
}
|
||||
|
||||
// PasswordNotIn applies the NotIn predicate on the "password" field.
|
||||
func PasswordNotIn(vs ...[]byte) predicate.Account {
|
||||
v := make([]interface{}, len(vs))
|
||||
for i := range v {
|
||||
v[i] = vs[i]
|
||||
}
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
// if not arguments were provided, append the FALSE constants,
|
||||
// since we can't apply "IN ()". This will make this predicate falsy.
|
||||
if len(v) == 0 {
|
||||
s.Where(sql.False())
|
||||
return
|
||||
}
|
||||
s.Where(sql.NotIn(s.C(FieldPassword), v...))
|
||||
})
|
||||
}
|
||||
|
||||
// PasswordGT applies the GT predicate on the "password" field.
|
||||
func PasswordGT(v []byte) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.GT(s.C(FieldPassword), v))
|
||||
})
|
||||
}
|
||||
|
||||
// PasswordGTE applies the GTE predicate on the "password" field.
|
||||
func PasswordGTE(v []byte) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.GTE(s.C(FieldPassword), v))
|
||||
})
|
||||
}
|
||||
|
||||
// PasswordLT applies the LT predicate on the "password" field.
|
||||
func PasswordLT(v []byte) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.LT(s.C(FieldPassword), v))
|
||||
})
|
||||
}
|
||||
|
||||
// PasswordLTE applies the LTE predicate on the "password" field.
|
||||
func PasswordLTE(v []byte) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.LTE(s.C(FieldPassword), v))
|
||||
})
|
||||
}
|
||||
|
||||
// SuperEQ applies the EQ predicate on the "super" field.
|
||||
func SuperEQ(v bool) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldSuper), v))
|
||||
})
|
||||
}
|
||||
|
||||
// SuperNEQ applies the NEQ predicate on the "super" field.
|
||||
func SuperNEQ(v bool) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.NEQ(s.C(FieldSuper), v))
|
||||
})
|
||||
}
|
||||
|
||||
// ActiveEQ applies the EQ predicate on the "active" field.
|
||||
func ActiveEQ(v bool) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.EQ(s.C(FieldActive), v))
|
||||
})
|
||||
}
|
||||
|
||||
// ActiveNEQ applies the NEQ predicate on the "active" field.
|
||||
func ActiveNEQ(v bool) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s.Where(sql.NEQ(s.C(FieldActive), v))
|
||||
})
|
||||
}
|
||||
|
||||
// HasDomains applies the HasEdge predicate on the "domains" edge.
|
||||
func HasDomains() predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
step := sqlgraph.NewStep(
|
||||
sqlgraph.From(Table, FieldID),
|
||||
sqlgraph.To(DomainsTable, FieldID),
|
||||
sqlgraph.Edge(sqlgraph.M2M, false, DomainsTable, DomainsPrimaryKey...),
|
||||
)
|
||||
sqlgraph.HasNeighbors(s, step)
|
||||
})
|
||||
}
|
||||
|
||||
// HasDomainsWith applies the HasEdge predicate on the "domains" edge with a given conditions (other predicates).
|
||||
func HasDomainsWith(preds ...predicate.Domain) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
step := sqlgraph.NewStep(
|
||||
sqlgraph.From(Table, FieldID),
|
||||
sqlgraph.To(DomainsInverseTable, FieldID),
|
||||
sqlgraph.Edge(sqlgraph.M2M, false, DomainsTable, DomainsPrimaryKey...),
|
||||
)
|
||||
sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
|
||||
for _, p := range preds {
|
||||
p(s)
|
||||
}
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
// HasLogs applies the HasEdge predicate on the "logs" edge.
|
||||
func HasLogs() predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
step := sqlgraph.NewStep(
|
||||
sqlgraph.From(Table, FieldID),
|
||||
sqlgraph.To(LogsTable, FieldID),
|
||||
sqlgraph.Edge(sqlgraph.O2M, false, LogsTable, LogsColumn),
|
||||
)
|
||||
sqlgraph.HasNeighbors(s, step)
|
||||
})
|
||||
}
|
||||
|
||||
// HasLogsWith applies the HasEdge predicate on the "logs" edge with a given conditions (other predicates).
|
||||
func HasLogsWith(preds ...predicate.Logentry) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
step := sqlgraph.NewStep(
|
||||
sqlgraph.From(Table, FieldID),
|
||||
sqlgraph.To(LogsInverseTable, FieldID),
|
||||
sqlgraph.Edge(sqlgraph.O2M, false, LogsTable, LogsColumn),
|
||||
)
|
||||
sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
|
||||
for _, p := range preds {
|
||||
p(s)
|
||||
}
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
// And groups predicates with the AND operator between them.
|
||||
func And(predicates ...predicate.Account) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s1 := s.Clone().SetP(nil)
|
||||
for _, p := range predicates {
|
||||
p(s1)
|
||||
}
|
||||
s.Where(s1.P())
|
||||
})
|
||||
}
|
||||
|
||||
// Or groups predicates with the OR operator between them.
|
||||
func Or(predicates ...predicate.Account) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
s1 := s.Clone().SetP(nil)
|
||||
for i, p := range predicates {
|
||||
if i > 0 {
|
||||
s1.Or()
|
||||
}
|
||||
p(s1)
|
||||
}
|
||||
s.Where(s1.P())
|
||||
})
|
||||
}
|
||||
|
||||
// Not applies the not operator on the given predicate.
|
||||
func Not(p predicate.Account) predicate.Account {
|
||||
return predicate.Account(func(s *sql.Selector) {
|
||||
p(s.Not())
|
||||
})
|
||||
}
|
Reference in New Issue
Block a user