Documentation ¶
Index ¶
- Variables
- func NewQuery(mods ...qm.QueryMod) *queries.Query
- func ReputationConfigExists(ctx context.Context, exec boil.ContextExecutor, guildID int64) (bool, error)
- func ReputationConfigExistsG(ctx context.Context, guildID int64) (bool, error)
- func ReputationConfigs(mods ...qm.QueryMod) reputationConfigQuery
- func ReputationLogExists(ctx context.Context, exec boil.ContextExecutor, iD int64) (bool, error)
- func ReputationLogExistsG(ctx context.Context, iD int64) (bool, error)
- func ReputationLogs(mods ...qm.QueryMod) reputationLogQuery
- func ReputationUserExists(ctx context.Context, exec boil.ContextExecutor, guildID int64, userID int64) (bool, error)
- func ReputationUserExistsG(ctx context.Context, guildID int64, userID int64) (bool, error)
- func ReputationUsers(mods ...qm.QueryMod) reputationUserQuery
- type M
- type ReputationConfig
- func (o *ReputationConfig) Delete(ctx context.Context, exec boil.ContextExecutor) (int64, error)
- func (o *ReputationConfig) DeleteG(ctx context.Context) (int64, error)
- func (o *ReputationConfig) Insert(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) error
- func (o *ReputationConfig) InsertG(ctx context.Context, columns boil.Columns) error
- func (o *ReputationConfig) Reload(ctx context.Context, exec boil.ContextExecutor) error
- func (o *ReputationConfig) ReloadG(ctx context.Context) error
- func (o *ReputationConfig) Update(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) (int64, error)
- func (o *ReputationConfig) UpdateG(ctx context.Context, columns boil.Columns) (int64, error)
- func (o *ReputationConfig) Upsert(ctx context.Context, exec boil.ContextExecutor, updateOnConflict bool, ...) error
- func (o *ReputationConfig) UpsertG(ctx context.Context, updateOnConflict bool, conflictColumns []string, ...) error
- type ReputationConfigSlice
- func (o ReputationConfigSlice) DeleteAll(ctx context.Context, exec boil.ContextExecutor) (int64, error)
- func (o ReputationConfigSlice) DeleteAllG(ctx context.Context) (int64, error)
- func (o *ReputationConfigSlice) ReloadAll(ctx context.Context, exec boil.ContextExecutor) error
- func (o *ReputationConfigSlice) ReloadAllG(ctx context.Context) error
- func (o ReputationConfigSlice) UpdateAll(ctx context.Context, exec boil.ContextExecutor, cols M) (int64, error)
- func (o ReputationConfigSlice) UpdateAllG(ctx context.Context, cols M) (int64, error)
- type ReputationLog
- func (o *ReputationLog) Delete(ctx context.Context, exec boil.ContextExecutor) (int64, error)
- func (o *ReputationLog) DeleteG(ctx context.Context) (int64, error)
- func (o *ReputationLog) Insert(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) error
- func (o *ReputationLog) InsertG(ctx context.Context, columns boil.Columns) error
- func (o *ReputationLog) Reload(ctx context.Context, exec boil.ContextExecutor) error
- func (o *ReputationLog) ReloadG(ctx context.Context) error
- func (o *ReputationLog) Update(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) (int64, error)
- func (o *ReputationLog) UpdateG(ctx context.Context, columns boil.Columns) (int64, error)
- func (o *ReputationLog) Upsert(ctx context.Context, exec boil.ContextExecutor, updateOnConflict bool, ...) error
- func (o *ReputationLog) UpsertG(ctx context.Context, updateOnConflict bool, conflictColumns []string, ...) error
- type ReputationLogSlice
- func (o ReputationLogSlice) DeleteAll(ctx context.Context, exec boil.ContextExecutor) (int64, error)
- func (o ReputationLogSlice) DeleteAllG(ctx context.Context) (int64, error)
- func (o *ReputationLogSlice) ReloadAll(ctx context.Context, exec boil.ContextExecutor) error
- func (o *ReputationLogSlice) ReloadAllG(ctx context.Context) error
- func (o ReputationLogSlice) UpdateAll(ctx context.Context, exec boil.ContextExecutor, cols M) (int64, error)
- func (o ReputationLogSlice) UpdateAllG(ctx context.Context, cols M) (int64, error)
- type ReputationUser
- func (o *ReputationUser) Delete(ctx context.Context, exec boil.ContextExecutor) (int64, error)
- func (o *ReputationUser) DeleteG(ctx context.Context) (int64, error)
- func (o *ReputationUser) Insert(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) error
- func (o *ReputationUser) InsertG(ctx context.Context, columns boil.Columns) error
- func (o *ReputationUser) Reload(ctx context.Context, exec boil.ContextExecutor) error
- func (o *ReputationUser) ReloadG(ctx context.Context) error
- func (o *ReputationUser) Update(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) (int64, error)
- func (o *ReputationUser) UpdateG(ctx context.Context, columns boil.Columns) (int64, error)
- func (o *ReputationUser) Upsert(ctx context.Context, exec boil.ContextExecutor, updateOnConflict bool, ...) error
- func (o *ReputationUser) UpsertG(ctx context.Context, updateOnConflict bool, conflictColumns []string, ...) error
- type ReputationUserSlice
- func (o ReputationUserSlice) DeleteAll(ctx context.Context, exec boil.ContextExecutor) (int64, error)
- func (o ReputationUserSlice) DeleteAllG(ctx context.Context) (int64, error)
- func (o *ReputationUserSlice) ReloadAll(ctx context.Context, exec boil.ContextExecutor) error
- func (o *ReputationUserSlice) ReloadAllG(ctx context.Context) error
- func (o ReputationUserSlice) UpdateAll(ctx context.Context, exec boil.ContextExecutor, cols M) (int64, error)
- func (o ReputationUserSlice) UpdateAllG(ctx context.Context, cols M) (int64, error)
Constants ¶
This section is empty.
Variables ¶
var ErrSyncFail = errors.New("models: failed to synchronize data after insert")
ErrSyncFail occurs during insert when the record could not be retrieved in order to populate default value information. This usually happens when LastInsertId fails or there was a primary key configuration that was not resolvable.
var ReputationConfigColumns = struct { GuildID string PointsName string Enabled string Cooldown string MaxGiveAmount string RequiredGiveRole string RequiredReceiveRole string BlacklistedGiveRole string BlacklistedReceiveRole string AdminRole string DisableThanksDetection string }{ GuildID: "guild_id", PointsName: "points_name", Enabled: "enabled", Cooldown: "cooldown", MaxGiveAmount: "max_give_amount", RequiredGiveRole: "required_give_role", RequiredReceiveRole: "required_receive_role", BlacklistedGiveRole: "blacklisted_give_role", BlacklistedReceiveRole: "blacklisted_receive_role", AdminRole: "admin_role", DisableThanksDetection: "disable_thanks_detection", }
var ReputationConfigRels = struct {
}{}
ReputationConfigRels is where relationship names are stored.
var ReputationLogColumns = struct { ID string CreatedAt string GuildID string SenderID string ReceiverID string SetFixedAmount string Amount string ReceiverUsername string SenderUsername string }{ ID: "id", CreatedAt: "created_at", GuildID: "guild_id", SenderID: "sender_id", ReceiverID: "receiver_id", SetFixedAmount: "set_fixed_amount", Amount: "amount", ReceiverUsername: "receiver_username", SenderUsername: "sender_username", }
var ReputationLogRels = struct {
}{}
ReputationLogRels is where relationship names are stored.
var ReputationUserColumns = struct { UserID string GuildID string CreatedAt string Points string }{ UserID: "user_id", GuildID: "guild_id", CreatedAt: "created_at", Points: "points", }
var ReputationUserRels = struct {
}{}
ReputationUserRels is where relationship names are stored.
var TableNames = struct { ReputationConfigs string ReputationLog string ReputationUsers string }{ ReputationConfigs: "reputation_configs", ReputationLog: "reputation_log", ReputationUsers: "reputation_users", }
Functions ¶
func ReputationConfigExists ¶
func ReputationConfigExists(ctx context.Context, exec boil.ContextExecutor, guildID int64) (bool, error)
ReputationConfigExists checks if the ReputationConfig row exists.
func ReputationConfigExistsG ¶
ReputationConfigExistsG checks if the ReputationConfig row exists.
func ReputationConfigs ¶
ReputationConfigs retrieves all the records using an executor.
func ReputationLogExists ¶
ReputationLogExists checks if the ReputationLog row exists.
func ReputationLogExistsG ¶
ReputationLogExistsG checks if the ReputationLog row exists.
func ReputationLogs ¶
ReputationLogs retrieves all the records using an executor.
func ReputationUserExists ¶
func ReputationUserExists(ctx context.Context, exec boil.ContextExecutor, guildID int64, userID int64) (bool, error)
ReputationUserExists checks if the ReputationUser row exists.
func ReputationUserExistsG ¶
ReputationUserExistsG checks if the ReputationUser row exists.
func ReputationUsers ¶
ReputationUsers retrieves all the records using an executor.
Types ¶
type M ¶
type M map[string]interface{}
M type is for providing columns and column values to UpdateAll.
type ReputationConfig ¶
type ReputationConfig struct { GuildID int64 `boil:"guild_id" json:"guild_id" toml:"guild_id" yaml:"guild_id"` PointsName string `boil:"points_name" json:"points_name" toml:"points_name" yaml:"points_name"` Enabled bool `boil:"enabled" json:"enabled" toml:"enabled" yaml:"enabled"` Cooldown int `boil:"cooldown" json:"cooldown" toml:"cooldown" yaml:"cooldown"` MaxGiveAmount int64 `boil:"max_give_amount" json:"max_give_amount" toml:"max_give_amount" yaml:"max_give_amount"` RequiredGiveRole null.String `boil:"required_give_role" json:"required_give_role,omitempty" toml:"required_give_role" yaml:"required_give_role,omitempty"` RequiredReceiveRole null.String `` /* 135-byte string literal not displayed */ BlacklistedGiveRole null.String `` /* 135-byte string literal not displayed */ BlacklistedReceiveRole null.String `` /* 147-byte string literal not displayed */ AdminRole null.String `boil:"admin_role" json:"admin_role,omitempty" toml:"admin_role" yaml:"admin_role,omitempty"` DisableThanksDetection bool `` /* 127-byte string literal not displayed */ R *reputationConfigR `boil:"-" json:"-" toml:"-" yaml:"-"` L reputationConfigL `boil:"-" json:"-" toml:"-" yaml:"-"` }
ReputationConfig is an object representing the database table.
func FindReputationConfig ¶
func FindReputationConfig(ctx context.Context, exec boil.ContextExecutor, guildID int64, selectCols ...string) (*ReputationConfig, error)
FindReputationConfig retrieves a single record by ID with an executor. If selectCols is empty Find will return all columns.
func FindReputationConfigG ¶
func FindReputationConfigG(ctx context.Context, guildID int64, selectCols ...string) (*ReputationConfig, error)
FindReputationConfigG retrieves a single record by ID.
func (*ReputationConfig) Delete ¶
func (o *ReputationConfig) Delete(ctx context.Context, exec boil.ContextExecutor) (int64, error)
Delete deletes a single ReputationConfig record with an executor. Delete will match against the primary key column to find the record to delete.
func (*ReputationConfig) DeleteG ¶
func (o *ReputationConfig) DeleteG(ctx context.Context) (int64, error)
DeleteG deletes a single ReputationConfig record. DeleteG will match against the primary key column to find the record to delete.
func (*ReputationConfig) Insert ¶
func (o *ReputationConfig) Insert(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) error
Insert a single record using an executor. See boil.Columns.InsertColumnSet documentation to understand column list inference for inserts.
func (*ReputationConfig) InsertG ¶
InsertG a single record. See Insert for whitelist behavior description.
func (*ReputationConfig) Reload ¶
func (o *ReputationConfig) Reload(ctx context.Context, exec boil.ContextExecutor) error
Reload refetches the object from the database using the primary keys with an executor.
func (*ReputationConfig) ReloadG ¶
func (o *ReputationConfig) ReloadG(ctx context.Context) error
ReloadG refetches the object from the database using the primary keys.
func (*ReputationConfig) Update ¶
func (o *ReputationConfig) Update(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) (int64, error)
Update uses an executor to update the ReputationConfig. See boil.Columns.UpdateColumnSet documentation to understand column list inference for updates. Update does not automatically update the record in case of default values. Use .Reload() to refresh the records.
func (*ReputationConfig) UpdateG ¶
UpdateG a single ReputationConfig record using the global executor. See Update for more documentation.
func (*ReputationConfig) Upsert ¶
func (o *ReputationConfig) Upsert(ctx context.Context, exec boil.ContextExecutor, updateOnConflict bool, conflictColumns []string, updateColumns, insertColumns boil.Columns) error
Upsert attempts an insert using an executor, and does an update or ignore on conflict. See boil.Columns documentation for how to properly use updateColumns and insertColumns.
type ReputationConfigSlice ¶
type ReputationConfigSlice []*ReputationConfig
ReputationConfigSlice is an alias for a slice of pointers to ReputationConfig. This should generally be used opposed to []ReputationConfig.
func (ReputationConfigSlice) DeleteAll ¶
func (o ReputationConfigSlice) DeleteAll(ctx context.Context, exec boil.ContextExecutor) (int64, error)
DeleteAll deletes all rows in the slice, using an executor.
func (ReputationConfigSlice) DeleteAllG ¶
func (o ReputationConfigSlice) DeleteAllG(ctx context.Context) (int64, error)
DeleteAllG deletes all rows in the slice.
func (*ReputationConfigSlice) ReloadAll ¶
func (o *ReputationConfigSlice) ReloadAll(ctx context.Context, exec boil.ContextExecutor) error
ReloadAll refetches every row with matching primary key column values and overwrites the original object slice with the newly updated slice.
func (*ReputationConfigSlice) ReloadAllG ¶
func (o *ReputationConfigSlice) ReloadAllG(ctx context.Context) error
ReloadAllG refetches every row with matching primary key column values and overwrites the original object slice with the newly updated slice.
func (ReputationConfigSlice) UpdateAll ¶
func (o ReputationConfigSlice) UpdateAll(ctx context.Context, exec boil.ContextExecutor, cols M) (int64, error)
UpdateAll updates all rows with the specified column values, using an executor.
func (ReputationConfigSlice) UpdateAllG ¶
UpdateAllG updates all rows with the specified column values.
type ReputationLog ¶
type ReputationLog struct { ID int64 `boil:"id" json:"id" toml:"id" yaml:"id"` CreatedAt time.Time `boil:"created_at" json:"created_at" toml:"created_at" yaml:"created_at"` GuildID int64 `boil:"guild_id" json:"guild_id" toml:"guild_id" yaml:"guild_id"` SenderID int64 `boil:"sender_id" json:"sender_id" toml:"sender_id" yaml:"sender_id"` ReceiverID int64 `boil:"receiver_id" json:"receiver_id" toml:"receiver_id" yaml:"receiver_id"` SetFixedAmount bool `boil:"set_fixed_amount" json:"set_fixed_amount" toml:"set_fixed_amount" yaml:"set_fixed_amount"` Amount int64 `boil:"amount" json:"amount" toml:"amount" yaml:"amount"` ReceiverUsername string `boil:"receiver_username" json:"receiver_username" toml:"receiver_username" yaml:"receiver_username"` SenderUsername string `boil:"sender_username" json:"sender_username" toml:"sender_username" yaml:"sender_username"` R *reputationLogR `boil:"-" json:"-" toml:"-" yaml:"-"` L reputationLogL `boil:"-" json:"-" toml:"-" yaml:"-"` }
ReputationLog is an object representing the database table.
func FindReputationLog ¶
func FindReputationLog(ctx context.Context, exec boil.ContextExecutor, iD int64, selectCols ...string) (*ReputationLog, error)
FindReputationLog retrieves a single record by ID with an executor. If selectCols is empty Find will return all columns.
func FindReputationLogG ¶
func FindReputationLogG(ctx context.Context, iD int64, selectCols ...string) (*ReputationLog, error)
FindReputationLogG retrieves a single record by ID.
func (*ReputationLog) Delete ¶
func (o *ReputationLog) Delete(ctx context.Context, exec boil.ContextExecutor) (int64, error)
Delete deletes a single ReputationLog record with an executor. Delete will match against the primary key column to find the record to delete.
func (*ReputationLog) DeleteG ¶
func (o *ReputationLog) DeleteG(ctx context.Context) (int64, error)
DeleteG deletes a single ReputationLog record. DeleteG will match against the primary key column to find the record to delete.
func (*ReputationLog) Insert ¶
func (o *ReputationLog) Insert(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) error
Insert a single record using an executor. See boil.Columns.InsertColumnSet documentation to understand column list inference for inserts.
func (*ReputationLog) InsertG ¶
InsertG a single record. See Insert for whitelist behavior description.
func (*ReputationLog) Reload ¶
func (o *ReputationLog) Reload(ctx context.Context, exec boil.ContextExecutor) error
Reload refetches the object from the database using the primary keys with an executor.
func (*ReputationLog) ReloadG ¶
func (o *ReputationLog) ReloadG(ctx context.Context) error
ReloadG refetches the object from the database using the primary keys.
func (*ReputationLog) Update ¶
func (o *ReputationLog) Update(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) (int64, error)
Update uses an executor to update the ReputationLog. See boil.Columns.UpdateColumnSet documentation to understand column list inference for updates. Update does not automatically update the record in case of default values. Use .Reload() to refresh the records.
func (*ReputationLog) UpdateG ¶
UpdateG a single ReputationLog record using the global executor. See Update for more documentation.
func (*ReputationLog) Upsert ¶
func (o *ReputationLog) Upsert(ctx context.Context, exec boil.ContextExecutor, updateOnConflict bool, conflictColumns []string, updateColumns, insertColumns boil.Columns) error
Upsert attempts an insert using an executor, and does an update or ignore on conflict. See boil.Columns documentation for how to properly use updateColumns and insertColumns.
type ReputationLogSlice ¶
type ReputationLogSlice []*ReputationLog
ReputationLogSlice is an alias for a slice of pointers to ReputationLog. This should generally be used opposed to []ReputationLog.
func (ReputationLogSlice) DeleteAll ¶
func (o ReputationLogSlice) DeleteAll(ctx context.Context, exec boil.ContextExecutor) (int64, error)
DeleteAll deletes all rows in the slice, using an executor.
func (ReputationLogSlice) DeleteAllG ¶
func (o ReputationLogSlice) DeleteAllG(ctx context.Context) (int64, error)
DeleteAllG deletes all rows in the slice.
func (*ReputationLogSlice) ReloadAll ¶
func (o *ReputationLogSlice) ReloadAll(ctx context.Context, exec boil.ContextExecutor) error
ReloadAll refetches every row with matching primary key column values and overwrites the original object slice with the newly updated slice.
func (*ReputationLogSlice) ReloadAllG ¶
func (o *ReputationLogSlice) ReloadAllG(ctx context.Context) error
ReloadAllG refetches every row with matching primary key column values and overwrites the original object slice with the newly updated slice.
func (ReputationLogSlice) UpdateAll ¶
func (o ReputationLogSlice) UpdateAll(ctx context.Context, exec boil.ContextExecutor, cols M) (int64, error)
UpdateAll updates all rows with the specified column values, using an executor.
func (ReputationLogSlice) UpdateAllG ¶
UpdateAllG updates all rows with the specified column values.
type ReputationUser ¶
type ReputationUser struct { UserID int64 `boil:"user_id" json:"user_id" toml:"user_id" yaml:"user_id"` GuildID int64 `boil:"guild_id" json:"guild_id" toml:"guild_id" yaml:"guild_id"` CreatedAt time.Time `boil:"created_at" json:"created_at" toml:"created_at" yaml:"created_at"` Points int64 `boil:"points" json:"points" toml:"points" yaml:"points"` R *reputationUserR `boil:"-" json:"-" toml:"-" yaml:"-"` L reputationUserL `boil:"-" json:"-" toml:"-" yaml:"-"` }
ReputationUser is an object representing the database table.
func FindReputationUser ¶
func FindReputationUser(ctx context.Context, exec boil.ContextExecutor, guildID int64, userID int64, selectCols ...string) (*ReputationUser, error)
FindReputationUser retrieves a single record by ID with an executor. If selectCols is empty Find will return all columns.
func FindReputationUserG ¶
func FindReputationUserG(ctx context.Context, guildID int64, userID int64, selectCols ...string) (*ReputationUser, error)
FindReputationUserG retrieves a single record by ID.
func (*ReputationUser) Delete ¶
func (o *ReputationUser) Delete(ctx context.Context, exec boil.ContextExecutor) (int64, error)
Delete deletes a single ReputationUser record with an executor. Delete will match against the primary key column to find the record to delete.
func (*ReputationUser) DeleteG ¶
func (o *ReputationUser) DeleteG(ctx context.Context) (int64, error)
DeleteG deletes a single ReputationUser record. DeleteG will match against the primary key column to find the record to delete.
func (*ReputationUser) Insert ¶
func (o *ReputationUser) Insert(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) error
Insert a single record using an executor. See boil.Columns.InsertColumnSet documentation to understand column list inference for inserts.
func (*ReputationUser) InsertG ¶
InsertG a single record. See Insert for whitelist behavior description.
func (*ReputationUser) Reload ¶
func (o *ReputationUser) Reload(ctx context.Context, exec boil.ContextExecutor) error
Reload refetches the object from the database using the primary keys with an executor.
func (*ReputationUser) ReloadG ¶
func (o *ReputationUser) ReloadG(ctx context.Context) error
ReloadG refetches the object from the database using the primary keys.
func (*ReputationUser) Update ¶
func (o *ReputationUser) Update(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) (int64, error)
Update uses an executor to update the ReputationUser. See boil.Columns.UpdateColumnSet documentation to understand column list inference for updates. Update does not automatically update the record in case of default values. Use .Reload() to refresh the records.
func (*ReputationUser) UpdateG ¶
UpdateG a single ReputationUser record using the global executor. See Update for more documentation.
func (*ReputationUser) Upsert ¶
func (o *ReputationUser) Upsert(ctx context.Context, exec boil.ContextExecutor, updateOnConflict bool, conflictColumns []string, updateColumns, insertColumns boil.Columns) error
Upsert attempts an insert using an executor, and does an update or ignore on conflict. See boil.Columns documentation for how to properly use updateColumns and insertColumns.
type ReputationUserSlice ¶
type ReputationUserSlice []*ReputationUser
ReputationUserSlice is an alias for a slice of pointers to ReputationUser. This should generally be used opposed to []ReputationUser.
func (ReputationUserSlice) DeleteAll ¶
func (o ReputationUserSlice) DeleteAll(ctx context.Context, exec boil.ContextExecutor) (int64, error)
DeleteAll deletes all rows in the slice, using an executor.
func (ReputationUserSlice) DeleteAllG ¶
func (o ReputationUserSlice) DeleteAllG(ctx context.Context) (int64, error)
DeleteAllG deletes all rows in the slice.
func (*ReputationUserSlice) ReloadAll ¶
func (o *ReputationUserSlice) ReloadAll(ctx context.Context, exec boil.ContextExecutor) error
ReloadAll refetches every row with matching primary key column values and overwrites the original object slice with the newly updated slice.
func (*ReputationUserSlice) ReloadAllG ¶
func (o *ReputationUserSlice) ReloadAllG(ctx context.Context) error
ReloadAllG refetches every row with matching primary key column values and overwrites the original object slice with the newly updated slice.
func (ReputationUserSlice) UpdateAll ¶
func (o ReputationUserSlice) UpdateAll(ctx context.Context, exec boil.ContextExecutor, cols M) (int64, error)
UpdateAll updates all rows with the specified column values, using an executor.
func (ReputationUserSlice) UpdateAllG ¶
UpdateAllG updates all rows with the specified column values.