add: user accomplished
This commit is contained in:
@@ -0,0 +1,152 @@
|
||||
// Code generated by ent, DO NOT EDIT.
|
||||
|
||||
package users
|
||||
|
||||
import (
|
||||
"time"
|
||||
|
||||
"entgo.io/ent/dialect/sql"
|
||||
)
|
||||
|
||||
const (
|
||||
// Label holds the string label denoting the users type in the database.
|
||||
Label = "users"
|
||||
// FieldID holds the string denoting the id field in the database.
|
||||
FieldID = "id"
|
||||
// FieldUsername holds the string denoting the username field in the database.
|
||||
FieldUsername = "username"
|
||||
// FieldPasswordHash holds the string denoting the password_hash field in the database.
|
||||
FieldPasswordHash = "password_hash"
|
||||
// FieldEmail holds the string denoting the email field in the database.
|
||||
FieldEmail = "email"
|
||||
// FieldPhone holds the string denoting the phone field in the database.
|
||||
FieldPhone = "phone"
|
||||
// FieldNickname holds the string denoting the nickname field in the database.
|
||||
FieldNickname = "nickname"
|
||||
// FieldAvatar holds the string denoting the avatar field in the database.
|
||||
FieldAvatar = "avatar"
|
||||
// FieldBio holds the string denoting the bio field in the database.
|
||||
FieldBio = "bio"
|
||||
// FieldCurrentRole holds the string denoting the current_role field in the database.
|
||||
FieldCurrentRole = "current_role"
|
||||
// FieldVerifiedRoles holds the string denoting the verified_roles field in the database.
|
||||
FieldVerifiedRoles = "verified_roles"
|
||||
// FieldVerificationStatus holds the string denoting the verificationstatus field in the database.
|
||||
FieldVerificationStatus = "verification_status"
|
||||
// FieldIsAdmin holds the string denoting the is_admin field in the database.
|
||||
FieldIsAdmin = "is_admin"
|
||||
// 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"
|
||||
// FieldDeletedAt holds the string denoting the deleted_at field in the database.
|
||||
FieldDeletedAt = "deleted_at"
|
||||
// Table holds the table name of the users in the database.
|
||||
Table = "users"
|
||||
)
|
||||
|
||||
// Columns holds all SQL columns for users fields.
|
||||
var Columns = []string{
|
||||
FieldID,
|
||||
FieldUsername,
|
||||
FieldPasswordHash,
|
||||
FieldEmail,
|
||||
FieldPhone,
|
||||
FieldNickname,
|
||||
FieldAvatar,
|
||||
FieldBio,
|
||||
FieldCurrentRole,
|
||||
FieldVerifiedRoles,
|
||||
FieldVerificationStatus,
|
||||
FieldIsAdmin,
|
||||
FieldCreatedAt,
|
||||
FieldUpdatedAt,
|
||||
FieldDeletedAt,
|
||||
}
|
||||
|
||||
// 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 (
|
||||
// DefaultIsAdmin holds the default value on creation for the "is_admin" field.
|
||||
DefaultIsAdmin bool
|
||||
// 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
|
||||
)
|
||||
|
||||
// OrderOption defines the ordering options for the Users queries.
|
||||
type OrderOption func(*sql.Selector)
|
||||
|
||||
// ByID orders the results by the id field.
|
||||
func ByID(opts ...sql.OrderTermOption) OrderOption {
|
||||
return sql.OrderByField(FieldID, opts...).ToFunc()
|
||||
}
|
||||
|
||||
// ByUsername orders the results by the username field.
|
||||
func ByUsername(opts ...sql.OrderTermOption) OrderOption {
|
||||
return sql.OrderByField(FieldUsername, opts...).ToFunc()
|
||||
}
|
||||
|
||||
// ByPasswordHash orders the results by the password_hash field.
|
||||
func ByPasswordHash(opts ...sql.OrderTermOption) OrderOption {
|
||||
return sql.OrderByField(FieldPasswordHash, opts...).ToFunc()
|
||||
}
|
||||
|
||||
// ByEmail orders the results by the email field.
|
||||
func ByEmail(opts ...sql.OrderTermOption) OrderOption {
|
||||
return sql.OrderByField(FieldEmail, opts...).ToFunc()
|
||||
}
|
||||
|
||||
// ByPhone orders the results by the phone field.
|
||||
func ByPhone(opts ...sql.OrderTermOption) OrderOption {
|
||||
return sql.OrderByField(FieldPhone, opts...).ToFunc()
|
||||
}
|
||||
|
||||
// ByNickname orders the results by the nickname field.
|
||||
func ByNickname(opts ...sql.OrderTermOption) OrderOption {
|
||||
return sql.OrderByField(FieldNickname, opts...).ToFunc()
|
||||
}
|
||||
|
||||
// ByAvatar orders the results by the avatar field.
|
||||
func ByAvatar(opts ...sql.OrderTermOption) OrderOption {
|
||||
return sql.OrderByField(FieldAvatar, opts...).ToFunc()
|
||||
}
|
||||
|
||||
// ByBio orders the results by the bio field.
|
||||
func ByBio(opts ...sql.OrderTermOption) OrderOption {
|
||||
return sql.OrderByField(FieldBio, opts...).ToFunc()
|
||||
}
|
||||
|
||||
// ByCurrentRole orders the results by the current_role field.
|
||||
func ByCurrentRole(opts ...sql.OrderTermOption) OrderOption {
|
||||
return sql.OrderByField(FieldCurrentRole, opts...).ToFunc()
|
||||
}
|
||||
|
||||
// ByIsAdmin orders the results by the is_admin field.
|
||||
func ByIsAdmin(opts ...sql.OrderTermOption) OrderOption {
|
||||
return sql.OrderByField(FieldIsAdmin, opts...).ToFunc()
|
||||
}
|
||||
|
||||
// ByCreatedAt orders the results by the created_at field.
|
||||
func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption {
|
||||
return sql.OrderByField(FieldCreatedAt, opts...).ToFunc()
|
||||
}
|
||||
|
||||
// ByUpdatedAt orders the results by the updated_at field.
|
||||
func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption {
|
||||
return sql.OrderByField(FieldUpdatedAt, opts...).ToFunc()
|
||||
}
|
||||
|
||||
// ByDeletedAt orders the results by the deleted_at field.
|
||||
func ByDeletedAt(opts ...sql.OrderTermOption) OrderOption {
|
||||
return sql.OrderByField(FieldDeletedAt, opts...).ToFunc()
|
||||
}
|
||||
@@ -0,0 +1,780 @@
|
||||
// Code generated by ent, DO NOT EDIT.
|
||||
|
||||
package users
|
||||
|
||||
import (
|
||||
"juwan-backend/app/users/rpc/internal/models/predicate"
|
||||
"time"
|
||||
|
||||
"entgo.io/ent/dialect/sql"
|
||||
)
|
||||
|
||||
// ID filters vertices based on their ID field.
|
||||
func ID(id int64) predicate.Users {
|
||||
return predicate.Users(sql.FieldEQ(FieldID, id))
|
||||
}
|
||||
|
||||
// IDEQ applies the EQ predicate on the ID field.
|
||||
func IDEQ(id int64) predicate.Users {
|
||||
return predicate.Users(sql.FieldEQ(FieldID, id))
|
||||
}
|
||||
|
||||
// IDNEQ applies the NEQ predicate on the ID field.
|
||||
func IDNEQ(id int64) predicate.Users {
|
||||
return predicate.Users(sql.FieldNEQ(FieldID, id))
|
||||
}
|
||||
|
||||
// IDIn applies the In predicate on the ID field.
|
||||
func IDIn(ids ...int64) predicate.Users {
|
||||
return predicate.Users(sql.FieldIn(FieldID, ids...))
|
||||
}
|
||||
|
||||
// IDNotIn applies the NotIn predicate on the ID field.
|
||||
func IDNotIn(ids ...int64) predicate.Users {
|
||||
return predicate.Users(sql.FieldNotIn(FieldID, ids...))
|
||||
}
|
||||
|
||||
// IDGT applies the GT predicate on the ID field.
|
||||
func IDGT(id int64) predicate.Users {
|
||||
return predicate.Users(sql.FieldGT(FieldID, id))
|
||||
}
|
||||
|
||||
// IDGTE applies the GTE predicate on the ID field.
|
||||
func IDGTE(id int64) predicate.Users {
|
||||
return predicate.Users(sql.FieldGTE(FieldID, id))
|
||||
}
|
||||
|
||||
// IDLT applies the LT predicate on the ID field.
|
||||
func IDLT(id int64) predicate.Users {
|
||||
return predicate.Users(sql.FieldLT(FieldID, id))
|
||||
}
|
||||
|
||||
// IDLTE applies the LTE predicate on the ID field.
|
||||
func IDLTE(id int64) predicate.Users {
|
||||
return predicate.Users(sql.FieldLTE(FieldID, id))
|
||||
}
|
||||
|
||||
// Username applies equality check predicate on the "username" field. It's identical to UsernameEQ.
|
||||
func Username(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldEQ(FieldUsername, v))
|
||||
}
|
||||
|
||||
// PasswordHash applies equality check predicate on the "password_hash" field. It's identical to PasswordHashEQ.
|
||||
func PasswordHash(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldEQ(FieldPasswordHash, v))
|
||||
}
|
||||
|
||||
// Email applies equality check predicate on the "email" field. It's identical to EmailEQ.
|
||||
func Email(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldEQ(FieldEmail, v))
|
||||
}
|
||||
|
||||
// Phone applies equality check predicate on the "phone" field. It's identical to PhoneEQ.
|
||||
func Phone(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldEQ(FieldPhone, v))
|
||||
}
|
||||
|
||||
// Nickname applies equality check predicate on the "nickname" field. It's identical to NicknameEQ.
|
||||
func Nickname(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldEQ(FieldNickname, v))
|
||||
}
|
||||
|
||||
// Avatar applies equality check predicate on the "avatar" field. It's identical to AvatarEQ.
|
||||
func Avatar(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldEQ(FieldAvatar, v))
|
||||
}
|
||||
|
||||
// Bio applies equality check predicate on the "bio" field. It's identical to BioEQ.
|
||||
func Bio(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldEQ(FieldBio, v))
|
||||
}
|
||||
|
||||
// CurrentRole applies equality check predicate on the "current_role" field. It's identical to CurrentRoleEQ.
|
||||
func CurrentRole(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldEQ(FieldCurrentRole, v))
|
||||
}
|
||||
|
||||
// IsAdmin applies equality check predicate on the "is_admin" field. It's identical to IsAdminEQ.
|
||||
func IsAdmin(v bool) predicate.Users {
|
||||
return predicate.Users(sql.FieldEQ(FieldIsAdmin, v))
|
||||
}
|
||||
|
||||
// CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
|
||||
func CreatedAt(v time.Time) predicate.Users {
|
||||
return predicate.Users(sql.FieldEQ(FieldCreatedAt, v))
|
||||
}
|
||||
|
||||
// UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.
|
||||
func UpdatedAt(v time.Time) predicate.Users {
|
||||
return predicate.Users(sql.FieldEQ(FieldUpdatedAt, v))
|
||||
}
|
||||
|
||||
// DeletedAt applies equality check predicate on the "deleted_at" field. It's identical to DeletedAtEQ.
|
||||
func DeletedAt(v time.Time) predicate.Users {
|
||||
return predicate.Users(sql.FieldEQ(FieldDeletedAt, v))
|
||||
}
|
||||
|
||||
// UsernameEQ applies the EQ predicate on the "username" field.
|
||||
func UsernameEQ(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldEQ(FieldUsername, v))
|
||||
}
|
||||
|
||||
// UsernameNEQ applies the NEQ predicate on the "username" field.
|
||||
func UsernameNEQ(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldNEQ(FieldUsername, v))
|
||||
}
|
||||
|
||||
// UsernameIn applies the In predicate on the "username" field.
|
||||
func UsernameIn(vs ...string) predicate.Users {
|
||||
return predicate.Users(sql.FieldIn(FieldUsername, vs...))
|
||||
}
|
||||
|
||||
// UsernameNotIn applies the NotIn predicate on the "username" field.
|
||||
func UsernameNotIn(vs ...string) predicate.Users {
|
||||
return predicate.Users(sql.FieldNotIn(FieldUsername, vs...))
|
||||
}
|
||||
|
||||
// UsernameGT applies the GT predicate on the "username" field.
|
||||
func UsernameGT(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldGT(FieldUsername, v))
|
||||
}
|
||||
|
||||
// UsernameGTE applies the GTE predicate on the "username" field.
|
||||
func UsernameGTE(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldGTE(FieldUsername, v))
|
||||
}
|
||||
|
||||
// UsernameLT applies the LT predicate on the "username" field.
|
||||
func UsernameLT(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldLT(FieldUsername, v))
|
||||
}
|
||||
|
||||
// UsernameLTE applies the LTE predicate on the "username" field.
|
||||
func UsernameLTE(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldLTE(FieldUsername, v))
|
||||
}
|
||||
|
||||
// UsernameContains applies the Contains predicate on the "username" field.
|
||||
func UsernameContains(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldContains(FieldUsername, v))
|
||||
}
|
||||
|
||||
// UsernameHasPrefix applies the HasPrefix predicate on the "username" field.
|
||||
func UsernameHasPrefix(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldHasPrefix(FieldUsername, v))
|
||||
}
|
||||
|
||||
// UsernameHasSuffix applies the HasSuffix predicate on the "username" field.
|
||||
func UsernameHasSuffix(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldHasSuffix(FieldUsername, v))
|
||||
}
|
||||
|
||||
// UsernameEqualFold applies the EqualFold predicate on the "username" field.
|
||||
func UsernameEqualFold(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldEqualFold(FieldUsername, v))
|
||||
}
|
||||
|
||||
// UsernameContainsFold applies the ContainsFold predicate on the "username" field.
|
||||
func UsernameContainsFold(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldContainsFold(FieldUsername, v))
|
||||
}
|
||||
|
||||
// PasswordHashEQ applies the EQ predicate on the "password_hash" field.
|
||||
func PasswordHashEQ(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldEQ(FieldPasswordHash, v))
|
||||
}
|
||||
|
||||
// PasswordHashNEQ applies the NEQ predicate on the "password_hash" field.
|
||||
func PasswordHashNEQ(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldNEQ(FieldPasswordHash, v))
|
||||
}
|
||||
|
||||
// PasswordHashIn applies the In predicate on the "password_hash" field.
|
||||
func PasswordHashIn(vs ...string) predicate.Users {
|
||||
return predicate.Users(sql.FieldIn(FieldPasswordHash, vs...))
|
||||
}
|
||||
|
||||
// PasswordHashNotIn applies the NotIn predicate on the "password_hash" field.
|
||||
func PasswordHashNotIn(vs ...string) predicate.Users {
|
||||
return predicate.Users(sql.FieldNotIn(FieldPasswordHash, vs...))
|
||||
}
|
||||
|
||||
// PasswordHashGT applies the GT predicate on the "password_hash" field.
|
||||
func PasswordHashGT(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldGT(FieldPasswordHash, v))
|
||||
}
|
||||
|
||||
// PasswordHashGTE applies the GTE predicate on the "password_hash" field.
|
||||
func PasswordHashGTE(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldGTE(FieldPasswordHash, v))
|
||||
}
|
||||
|
||||
// PasswordHashLT applies the LT predicate on the "password_hash" field.
|
||||
func PasswordHashLT(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldLT(FieldPasswordHash, v))
|
||||
}
|
||||
|
||||
// PasswordHashLTE applies the LTE predicate on the "password_hash" field.
|
||||
func PasswordHashLTE(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldLTE(FieldPasswordHash, v))
|
||||
}
|
||||
|
||||
// PasswordHashContains applies the Contains predicate on the "password_hash" field.
|
||||
func PasswordHashContains(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldContains(FieldPasswordHash, v))
|
||||
}
|
||||
|
||||
// PasswordHashHasPrefix applies the HasPrefix predicate on the "password_hash" field.
|
||||
func PasswordHashHasPrefix(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldHasPrefix(FieldPasswordHash, v))
|
||||
}
|
||||
|
||||
// PasswordHashHasSuffix applies the HasSuffix predicate on the "password_hash" field.
|
||||
func PasswordHashHasSuffix(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldHasSuffix(FieldPasswordHash, v))
|
||||
}
|
||||
|
||||
// PasswordHashEqualFold applies the EqualFold predicate on the "password_hash" field.
|
||||
func PasswordHashEqualFold(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldEqualFold(FieldPasswordHash, v))
|
||||
}
|
||||
|
||||
// PasswordHashContainsFold applies the ContainsFold predicate on the "password_hash" field.
|
||||
func PasswordHashContainsFold(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldContainsFold(FieldPasswordHash, v))
|
||||
}
|
||||
|
||||
// EmailEQ applies the EQ predicate on the "email" field.
|
||||
func EmailEQ(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldEQ(FieldEmail, v))
|
||||
}
|
||||
|
||||
// EmailNEQ applies the NEQ predicate on the "email" field.
|
||||
func EmailNEQ(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldNEQ(FieldEmail, v))
|
||||
}
|
||||
|
||||
// EmailIn applies the In predicate on the "email" field.
|
||||
func EmailIn(vs ...string) predicate.Users {
|
||||
return predicate.Users(sql.FieldIn(FieldEmail, vs...))
|
||||
}
|
||||
|
||||
// EmailNotIn applies the NotIn predicate on the "email" field.
|
||||
func EmailNotIn(vs ...string) predicate.Users {
|
||||
return predicate.Users(sql.FieldNotIn(FieldEmail, vs...))
|
||||
}
|
||||
|
||||
// EmailGT applies the GT predicate on the "email" field.
|
||||
func EmailGT(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldGT(FieldEmail, v))
|
||||
}
|
||||
|
||||
// EmailGTE applies the GTE predicate on the "email" field.
|
||||
func EmailGTE(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldGTE(FieldEmail, v))
|
||||
}
|
||||
|
||||
// EmailLT applies the LT predicate on the "email" field.
|
||||
func EmailLT(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldLT(FieldEmail, v))
|
||||
}
|
||||
|
||||
// EmailLTE applies the LTE predicate on the "email" field.
|
||||
func EmailLTE(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldLTE(FieldEmail, v))
|
||||
}
|
||||
|
||||
// EmailContains applies the Contains predicate on the "email" field.
|
||||
func EmailContains(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldContains(FieldEmail, v))
|
||||
}
|
||||
|
||||
// EmailHasPrefix applies the HasPrefix predicate on the "email" field.
|
||||
func EmailHasPrefix(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldHasPrefix(FieldEmail, v))
|
||||
}
|
||||
|
||||
// EmailHasSuffix applies the HasSuffix predicate on the "email" field.
|
||||
func EmailHasSuffix(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldHasSuffix(FieldEmail, v))
|
||||
}
|
||||
|
||||
// EmailEqualFold applies the EqualFold predicate on the "email" field.
|
||||
func EmailEqualFold(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldEqualFold(FieldEmail, v))
|
||||
}
|
||||
|
||||
// EmailContainsFold applies the ContainsFold predicate on the "email" field.
|
||||
func EmailContainsFold(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldContainsFold(FieldEmail, v))
|
||||
}
|
||||
|
||||
// PhoneEQ applies the EQ predicate on the "phone" field.
|
||||
func PhoneEQ(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldEQ(FieldPhone, v))
|
||||
}
|
||||
|
||||
// PhoneNEQ applies the NEQ predicate on the "phone" field.
|
||||
func PhoneNEQ(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldNEQ(FieldPhone, v))
|
||||
}
|
||||
|
||||
// PhoneIn applies the In predicate on the "phone" field.
|
||||
func PhoneIn(vs ...string) predicate.Users {
|
||||
return predicate.Users(sql.FieldIn(FieldPhone, vs...))
|
||||
}
|
||||
|
||||
// PhoneNotIn applies the NotIn predicate on the "phone" field.
|
||||
func PhoneNotIn(vs ...string) predicate.Users {
|
||||
return predicate.Users(sql.FieldNotIn(FieldPhone, vs...))
|
||||
}
|
||||
|
||||
// PhoneGT applies the GT predicate on the "phone" field.
|
||||
func PhoneGT(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldGT(FieldPhone, v))
|
||||
}
|
||||
|
||||
// PhoneGTE applies the GTE predicate on the "phone" field.
|
||||
func PhoneGTE(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldGTE(FieldPhone, v))
|
||||
}
|
||||
|
||||
// PhoneLT applies the LT predicate on the "phone" field.
|
||||
func PhoneLT(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldLT(FieldPhone, v))
|
||||
}
|
||||
|
||||
// PhoneLTE applies the LTE predicate on the "phone" field.
|
||||
func PhoneLTE(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldLTE(FieldPhone, v))
|
||||
}
|
||||
|
||||
// PhoneContains applies the Contains predicate on the "phone" field.
|
||||
func PhoneContains(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldContains(FieldPhone, v))
|
||||
}
|
||||
|
||||
// PhoneHasPrefix applies the HasPrefix predicate on the "phone" field.
|
||||
func PhoneHasPrefix(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldHasPrefix(FieldPhone, v))
|
||||
}
|
||||
|
||||
// PhoneHasSuffix applies the HasSuffix predicate on the "phone" field.
|
||||
func PhoneHasSuffix(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldHasSuffix(FieldPhone, v))
|
||||
}
|
||||
|
||||
// PhoneEqualFold applies the EqualFold predicate on the "phone" field.
|
||||
func PhoneEqualFold(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldEqualFold(FieldPhone, v))
|
||||
}
|
||||
|
||||
// PhoneContainsFold applies the ContainsFold predicate on the "phone" field.
|
||||
func PhoneContainsFold(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldContainsFold(FieldPhone, v))
|
||||
}
|
||||
|
||||
// NicknameEQ applies the EQ predicate on the "nickname" field.
|
||||
func NicknameEQ(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldEQ(FieldNickname, v))
|
||||
}
|
||||
|
||||
// NicknameNEQ applies the NEQ predicate on the "nickname" field.
|
||||
func NicknameNEQ(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldNEQ(FieldNickname, v))
|
||||
}
|
||||
|
||||
// NicknameIn applies the In predicate on the "nickname" field.
|
||||
func NicknameIn(vs ...string) predicate.Users {
|
||||
return predicate.Users(sql.FieldIn(FieldNickname, vs...))
|
||||
}
|
||||
|
||||
// NicknameNotIn applies the NotIn predicate on the "nickname" field.
|
||||
func NicknameNotIn(vs ...string) predicate.Users {
|
||||
return predicate.Users(sql.FieldNotIn(FieldNickname, vs...))
|
||||
}
|
||||
|
||||
// NicknameGT applies the GT predicate on the "nickname" field.
|
||||
func NicknameGT(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldGT(FieldNickname, v))
|
||||
}
|
||||
|
||||
// NicknameGTE applies the GTE predicate on the "nickname" field.
|
||||
func NicknameGTE(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldGTE(FieldNickname, v))
|
||||
}
|
||||
|
||||
// NicknameLT applies the LT predicate on the "nickname" field.
|
||||
func NicknameLT(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldLT(FieldNickname, v))
|
||||
}
|
||||
|
||||
// NicknameLTE applies the LTE predicate on the "nickname" field.
|
||||
func NicknameLTE(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldLTE(FieldNickname, v))
|
||||
}
|
||||
|
||||
// NicknameContains applies the Contains predicate on the "nickname" field.
|
||||
func NicknameContains(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldContains(FieldNickname, v))
|
||||
}
|
||||
|
||||
// NicknameHasPrefix applies the HasPrefix predicate on the "nickname" field.
|
||||
func NicknameHasPrefix(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldHasPrefix(FieldNickname, v))
|
||||
}
|
||||
|
||||
// NicknameHasSuffix applies the HasSuffix predicate on the "nickname" field.
|
||||
func NicknameHasSuffix(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldHasSuffix(FieldNickname, v))
|
||||
}
|
||||
|
||||
// NicknameEqualFold applies the EqualFold predicate on the "nickname" field.
|
||||
func NicknameEqualFold(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldEqualFold(FieldNickname, v))
|
||||
}
|
||||
|
||||
// NicknameContainsFold applies the ContainsFold predicate on the "nickname" field.
|
||||
func NicknameContainsFold(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldContainsFold(FieldNickname, v))
|
||||
}
|
||||
|
||||
// AvatarEQ applies the EQ predicate on the "avatar" field.
|
||||
func AvatarEQ(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldEQ(FieldAvatar, v))
|
||||
}
|
||||
|
||||
// AvatarNEQ applies the NEQ predicate on the "avatar" field.
|
||||
func AvatarNEQ(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldNEQ(FieldAvatar, v))
|
||||
}
|
||||
|
||||
// AvatarIn applies the In predicate on the "avatar" field.
|
||||
func AvatarIn(vs ...string) predicate.Users {
|
||||
return predicate.Users(sql.FieldIn(FieldAvatar, vs...))
|
||||
}
|
||||
|
||||
// AvatarNotIn applies the NotIn predicate on the "avatar" field.
|
||||
func AvatarNotIn(vs ...string) predicate.Users {
|
||||
return predicate.Users(sql.FieldNotIn(FieldAvatar, vs...))
|
||||
}
|
||||
|
||||
// AvatarGT applies the GT predicate on the "avatar" field.
|
||||
func AvatarGT(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldGT(FieldAvatar, v))
|
||||
}
|
||||
|
||||
// AvatarGTE applies the GTE predicate on the "avatar" field.
|
||||
func AvatarGTE(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldGTE(FieldAvatar, v))
|
||||
}
|
||||
|
||||
// AvatarLT applies the LT predicate on the "avatar" field.
|
||||
func AvatarLT(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldLT(FieldAvatar, v))
|
||||
}
|
||||
|
||||
// AvatarLTE applies the LTE predicate on the "avatar" field.
|
||||
func AvatarLTE(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldLTE(FieldAvatar, v))
|
||||
}
|
||||
|
||||
// AvatarContains applies the Contains predicate on the "avatar" field.
|
||||
func AvatarContains(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldContains(FieldAvatar, v))
|
||||
}
|
||||
|
||||
// AvatarHasPrefix applies the HasPrefix predicate on the "avatar" field.
|
||||
func AvatarHasPrefix(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldHasPrefix(FieldAvatar, v))
|
||||
}
|
||||
|
||||
// AvatarHasSuffix applies the HasSuffix predicate on the "avatar" field.
|
||||
func AvatarHasSuffix(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldHasSuffix(FieldAvatar, v))
|
||||
}
|
||||
|
||||
// AvatarEqualFold applies the EqualFold predicate on the "avatar" field.
|
||||
func AvatarEqualFold(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldEqualFold(FieldAvatar, v))
|
||||
}
|
||||
|
||||
// AvatarContainsFold applies the ContainsFold predicate on the "avatar" field.
|
||||
func AvatarContainsFold(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldContainsFold(FieldAvatar, v))
|
||||
}
|
||||
|
||||
// BioEQ applies the EQ predicate on the "bio" field.
|
||||
func BioEQ(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldEQ(FieldBio, v))
|
||||
}
|
||||
|
||||
// BioNEQ applies the NEQ predicate on the "bio" field.
|
||||
func BioNEQ(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldNEQ(FieldBio, v))
|
||||
}
|
||||
|
||||
// BioIn applies the In predicate on the "bio" field.
|
||||
func BioIn(vs ...string) predicate.Users {
|
||||
return predicate.Users(sql.FieldIn(FieldBio, vs...))
|
||||
}
|
||||
|
||||
// BioNotIn applies the NotIn predicate on the "bio" field.
|
||||
func BioNotIn(vs ...string) predicate.Users {
|
||||
return predicate.Users(sql.FieldNotIn(FieldBio, vs...))
|
||||
}
|
||||
|
||||
// BioGT applies the GT predicate on the "bio" field.
|
||||
func BioGT(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldGT(FieldBio, v))
|
||||
}
|
||||
|
||||
// BioGTE applies the GTE predicate on the "bio" field.
|
||||
func BioGTE(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldGTE(FieldBio, v))
|
||||
}
|
||||
|
||||
// BioLT applies the LT predicate on the "bio" field.
|
||||
func BioLT(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldLT(FieldBio, v))
|
||||
}
|
||||
|
||||
// BioLTE applies the LTE predicate on the "bio" field.
|
||||
func BioLTE(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldLTE(FieldBio, v))
|
||||
}
|
||||
|
||||
// BioContains applies the Contains predicate on the "bio" field.
|
||||
func BioContains(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldContains(FieldBio, v))
|
||||
}
|
||||
|
||||
// BioHasPrefix applies the HasPrefix predicate on the "bio" field.
|
||||
func BioHasPrefix(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldHasPrefix(FieldBio, v))
|
||||
}
|
||||
|
||||
// BioHasSuffix applies the HasSuffix predicate on the "bio" field.
|
||||
func BioHasSuffix(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldHasSuffix(FieldBio, v))
|
||||
}
|
||||
|
||||
// BioEqualFold applies the EqualFold predicate on the "bio" field.
|
||||
func BioEqualFold(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldEqualFold(FieldBio, v))
|
||||
}
|
||||
|
||||
// BioContainsFold applies the ContainsFold predicate on the "bio" field.
|
||||
func BioContainsFold(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldContainsFold(FieldBio, v))
|
||||
}
|
||||
|
||||
// CurrentRoleEQ applies the EQ predicate on the "current_role" field.
|
||||
func CurrentRoleEQ(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldEQ(FieldCurrentRole, v))
|
||||
}
|
||||
|
||||
// CurrentRoleNEQ applies the NEQ predicate on the "current_role" field.
|
||||
func CurrentRoleNEQ(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldNEQ(FieldCurrentRole, v))
|
||||
}
|
||||
|
||||
// CurrentRoleIn applies the In predicate on the "current_role" field.
|
||||
func CurrentRoleIn(vs ...string) predicate.Users {
|
||||
return predicate.Users(sql.FieldIn(FieldCurrentRole, vs...))
|
||||
}
|
||||
|
||||
// CurrentRoleNotIn applies the NotIn predicate on the "current_role" field.
|
||||
func CurrentRoleNotIn(vs ...string) predicate.Users {
|
||||
return predicate.Users(sql.FieldNotIn(FieldCurrentRole, vs...))
|
||||
}
|
||||
|
||||
// CurrentRoleGT applies the GT predicate on the "current_role" field.
|
||||
func CurrentRoleGT(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldGT(FieldCurrentRole, v))
|
||||
}
|
||||
|
||||
// CurrentRoleGTE applies the GTE predicate on the "current_role" field.
|
||||
func CurrentRoleGTE(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldGTE(FieldCurrentRole, v))
|
||||
}
|
||||
|
||||
// CurrentRoleLT applies the LT predicate on the "current_role" field.
|
||||
func CurrentRoleLT(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldLT(FieldCurrentRole, v))
|
||||
}
|
||||
|
||||
// CurrentRoleLTE applies the LTE predicate on the "current_role" field.
|
||||
func CurrentRoleLTE(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldLTE(FieldCurrentRole, v))
|
||||
}
|
||||
|
||||
// CurrentRoleContains applies the Contains predicate on the "current_role" field.
|
||||
func CurrentRoleContains(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldContains(FieldCurrentRole, v))
|
||||
}
|
||||
|
||||
// CurrentRoleHasPrefix applies the HasPrefix predicate on the "current_role" field.
|
||||
func CurrentRoleHasPrefix(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldHasPrefix(FieldCurrentRole, v))
|
||||
}
|
||||
|
||||
// CurrentRoleHasSuffix applies the HasSuffix predicate on the "current_role" field.
|
||||
func CurrentRoleHasSuffix(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldHasSuffix(FieldCurrentRole, v))
|
||||
}
|
||||
|
||||
// CurrentRoleEqualFold applies the EqualFold predicate on the "current_role" field.
|
||||
func CurrentRoleEqualFold(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldEqualFold(FieldCurrentRole, v))
|
||||
}
|
||||
|
||||
// CurrentRoleContainsFold applies the ContainsFold predicate on the "current_role" field.
|
||||
func CurrentRoleContainsFold(v string) predicate.Users {
|
||||
return predicate.Users(sql.FieldContainsFold(FieldCurrentRole, v))
|
||||
}
|
||||
|
||||
// IsAdminEQ applies the EQ predicate on the "is_admin" field.
|
||||
func IsAdminEQ(v bool) predicate.Users {
|
||||
return predicate.Users(sql.FieldEQ(FieldIsAdmin, v))
|
||||
}
|
||||
|
||||
// IsAdminNEQ applies the NEQ predicate on the "is_admin" field.
|
||||
func IsAdminNEQ(v bool) predicate.Users {
|
||||
return predicate.Users(sql.FieldNEQ(FieldIsAdmin, v))
|
||||
}
|
||||
|
||||
// CreatedAtEQ applies the EQ predicate on the "created_at" field.
|
||||
func CreatedAtEQ(v time.Time) predicate.Users {
|
||||
return predicate.Users(sql.FieldEQ(FieldCreatedAt, v))
|
||||
}
|
||||
|
||||
// CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
|
||||
func CreatedAtNEQ(v time.Time) predicate.Users {
|
||||
return predicate.Users(sql.FieldNEQ(FieldCreatedAt, v))
|
||||
}
|
||||
|
||||
// CreatedAtIn applies the In predicate on the "created_at" field.
|
||||
func CreatedAtIn(vs ...time.Time) predicate.Users {
|
||||
return predicate.Users(sql.FieldIn(FieldCreatedAt, vs...))
|
||||
}
|
||||
|
||||
// CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
|
||||
func CreatedAtNotIn(vs ...time.Time) predicate.Users {
|
||||
return predicate.Users(sql.FieldNotIn(FieldCreatedAt, vs...))
|
||||
}
|
||||
|
||||
// CreatedAtGT applies the GT predicate on the "created_at" field.
|
||||
func CreatedAtGT(v time.Time) predicate.Users {
|
||||
return predicate.Users(sql.FieldGT(FieldCreatedAt, v))
|
||||
}
|
||||
|
||||
// CreatedAtGTE applies the GTE predicate on the "created_at" field.
|
||||
func CreatedAtGTE(v time.Time) predicate.Users {
|
||||
return predicate.Users(sql.FieldGTE(FieldCreatedAt, v))
|
||||
}
|
||||
|
||||
// CreatedAtLT applies the LT predicate on the "created_at" field.
|
||||
func CreatedAtLT(v time.Time) predicate.Users {
|
||||
return predicate.Users(sql.FieldLT(FieldCreatedAt, v))
|
||||
}
|
||||
|
||||
// CreatedAtLTE applies the LTE predicate on the "created_at" field.
|
||||
func CreatedAtLTE(v time.Time) predicate.Users {
|
||||
return predicate.Users(sql.FieldLTE(FieldCreatedAt, v))
|
||||
}
|
||||
|
||||
// UpdatedAtEQ applies the EQ predicate on the "updated_at" field.
|
||||
func UpdatedAtEQ(v time.Time) predicate.Users {
|
||||
return predicate.Users(sql.FieldEQ(FieldUpdatedAt, v))
|
||||
}
|
||||
|
||||
// UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.
|
||||
func UpdatedAtNEQ(v time.Time) predicate.Users {
|
||||
return predicate.Users(sql.FieldNEQ(FieldUpdatedAt, v))
|
||||
}
|
||||
|
||||
// UpdatedAtIn applies the In predicate on the "updated_at" field.
|
||||
func UpdatedAtIn(vs ...time.Time) predicate.Users {
|
||||
return predicate.Users(sql.FieldIn(FieldUpdatedAt, vs...))
|
||||
}
|
||||
|
||||
// UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.
|
||||
func UpdatedAtNotIn(vs ...time.Time) predicate.Users {
|
||||
return predicate.Users(sql.FieldNotIn(FieldUpdatedAt, vs...))
|
||||
}
|
||||
|
||||
// UpdatedAtGT applies the GT predicate on the "updated_at" field.
|
||||
func UpdatedAtGT(v time.Time) predicate.Users {
|
||||
return predicate.Users(sql.FieldGT(FieldUpdatedAt, v))
|
||||
}
|
||||
|
||||
// UpdatedAtGTE applies the GTE predicate on the "updated_at" field.
|
||||
func UpdatedAtGTE(v time.Time) predicate.Users {
|
||||
return predicate.Users(sql.FieldGTE(FieldUpdatedAt, v))
|
||||
}
|
||||
|
||||
// UpdatedAtLT applies the LT predicate on the "updated_at" field.
|
||||
func UpdatedAtLT(v time.Time) predicate.Users {
|
||||
return predicate.Users(sql.FieldLT(FieldUpdatedAt, v))
|
||||
}
|
||||
|
||||
// UpdatedAtLTE applies the LTE predicate on the "updated_at" field.
|
||||
func UpdatedAtLTE(v time.Time) predicate.Users {
|
||||
return predicate.Users(sql.FieldLTE(FieldUpdatedAt, v))
|
||||
}
|
||||
|
||||
// DeletedAtEQ applies the EQ predicate on the "deleted_at" field.
|
||||
func DeletedAtEQ(v time.Time) predicate.Users {
|
||||
return predicate.Users(sql.FieldEQ(FieldDeletedAt, v))
|
||||
}
|
||||
|
||||
// DeletedAtNEQ applies the NEQ predicate on the "deleted_at" field.
|
||||
func DeletedAtNEQ(v time.Time) predicate.Users {
|
||||
return predicate.Users(sql.FieldNEQ(FieldDeletedAt, v))
|
||||
}
|
||||
|
||||
// DeletedAtIn applies the In predicate on the "deleted_at" field.
|
||||
func DeletedAtIn(vs ...time.Time) predicate.Users {
|
||||
return predicate.Users(sql.FieldIn(FieldDeletedAt, vs...))
|
||||
}
|
||||
|
||||
// DeletedAtNotIn applies the NotIn predicate on the "deleted_at" field.
|
||||
func DeletedAtNotIn(vs ...time.Time) predicate.Users {
|
||||
return predicate.Users(sql.FieldNotIn(FieldDeletedAt, vs...))
|
||||
}
|
||||
|
||||
// DeletedAtGT applies the GT predicate on the "deleted_at" field.
|
||||
func DeletedAtGT(v time.Time) predicate.Users {
|
||||
return predicate.Users(sql.FieldGT(FieldDeletedAt, v))
|
||||
}
|
||||
|
||||
// DeletedAtGTE applies the GTE predicate on the "deleted_at" field.
|
||||
func DeletedAtGTE(v time.Time) predicate.Users {
|
||||
return predicate.Users(sql.FieldGTE(FieldDeletedAt, v))
|
||||
}
|
||||
|
||||
// DeletedAtLT applies the LT predicate on the "deleted_at" field.
|
||||
func DeletedAtLT(v time.Time) predicate.Users {
|
||||
return predicate.Users(sql.FieldLT(FieldDeletedAt, v))
|
||||
}
|
||||
|
||||
// DeletedAtLTE applies the LTE predicate on the "deleted_at" field.
|
||||
func DeletedAtLTE(v time.Time) predicate.Users {
|
||||
return predicate.Users(sql.FieldLTE(FieldDeletedAt, v))
|
||||
}
|
||||
|
||||
// And groups predicates with the AND operator between them.
|
||||
func And(predicates ...predicate.Users) predicate.Users {
|
||||
return predicate.Users(sql.AndPredicates(predicates...))
|
||||
}
|
||||
|
||||
// Or groups predicates with the OR operator between them.
|
||||
func Or(predicates ...predicate.Users) predicate.Users {
|
||||
return predicate.Users(sql.OrPredicates(predicates...))
|
||||
}
|
||||
|
||||
// Not applies the not operator on the given predicate.
|
||||
func Not(p predicate.Users) predicate.Users {
|
||||
return predicate.Users(sql.NotPredicates(p))
|
||||
}
|
||||
Reference in New Issue
Block a user