Documentation ¶
Index ¶
- Variables
- func NewQuery(mods ...qm.QueryMod) *queries.Query
- func SoundboardSoundExists(ctx context.Context, exec boil.ContextExecutor, iD int) (bool, error)
- func SoundboardSoundExistsG(ctx context.Context, iD int) (bool, error)
- func SoundboardSounds(mods ...qm.QueryMod) soundboardSoundQuery
- type M
- type SoundboardSound
- func (o *SoundboardSound) Delete(ctx context.Context, exec boil.ContextExecutor) (int64, error)
- func (o *SoundboardSound) DeleteG(ctx context.Context) (int64, error)
- func (o *SoundboardSound) Exists(ctx context.Context, exec boil.ContextExecutor) (bool, error)
- func (o *SoundboardSound) Insert(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) error
- func (o *SoundboardSound) InsertG(ctx context.Context, columns boil.Columns) error
- func (o *SoundboardSound) Reload(ctx context.Context, exec boil.ContextExecutor) error
- func (o *SoundboardSound) ReloadG(ctx context.Context) error
- func (o *SoundboardSound) Update(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) (int64, error)
- func (o *SoundboardSound) UpdateG(ctx context.Context, columns boil.Columns) (int64, error)
- func (o *SoundboardSound) Upsert(ctx context.Context, exec boil.ContextExecutor, updateOnConflict bool, ...) error
- func (o *SoundboardSound) UpsertG(ctx context.Context, updateOnConflict bool, conflictColumns []string, ...) error
- type SoundboardSoundSlice
- func (o SoundboardSoundSlice) DeleteAll(ctx context.Context, exec boil.ContextExecutor) (int64, error)
- func (o SoundboardSoundSlice) DeleteAllG(ctx context.Context) (int64, error)
- func (o *SoundboardSoundSlice) ReloadAll(ctx context.Context, exec boil.ContextExecutor) error
- func (o *SoundboardSoundSlice) ReloadAllG(ctx context.Context) error
- func (o SoundboardSoundSlice) UpdateAll(ctx context.Context, exec boil.ContextExecutor, cols M) (int64, error)
- func (o SoundboardSoundSlice) UpdateAllG(ctx context.Context, cols M) (int64, error)
- type UpsertOptionFunc
- type UpsertOptions
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 SoundboardSoundColumns = struct { ID string CreatedAt string UpdatedAt string GuildID string RequiredRole string Name string Status string RequiredRoles string BlacklistedRoles string }{ ID: "id", CreatedAt: "created_at", UpdatedAt: "updated_at", GuildID: "guild_id", RequiredRole: "required_role", Name: "name", Status: "status", RequiredRoles: "required_roles", BlacklistedRoles: "blacklisted_roles", }
var SoundboardSoundRels = struct {
}{}
SoundboardSoundRels is where relationship names are stored.
var SoundboardSoundTableColumns = struct { ID string CreatedAt string UpdatedAt string GuildID string RequiredRole string Name string Status string RequiredRoles string BlacklistedRoles string }{ ID: "soundboard_sounds.id", CreatedAt: "soundboard_sounds.created_at", UpdatedAt: "soundboard_sounds.updated_at", GuildID: "soundboard_sounds.guild_id", RequiredRole: "soundboard_sounds.required_role", Name: "soundboard_sounds.name", Status: "soundboard_sounds.status", RequiredRoles: "soundboard_sounds.required_roles", BlacklistedRoles: "soundboard_sounds.blacklisted_roles", }
var SoundboardSoundWhere = struct { ID whereHelperint CreatedAt whereHelpertime_Time UpdatedAt whereHelpertime_Time GuildID whereHelperint64 RequiredRole whereHelperstring Name whereHelperstring Status whereHelperint RequiredRoles whereHelpertypes_Int64Array BlacklistedRoles whereHelpertypes_Int64Array }{ ID: whereHelperint{/* contains filtered or unexported fields */}, CreatedAt: whereHelpertime_Time{/* contains filtered or unexported fields */}, UpdatedAt: whereHelpertime_Time{/* contains filtered or unexported fields */}, GuildID: whereHelperint64{/* contains filtered or unexported fields */}, RequiredRole: whereHelperstring{/* contains filtered or unexported fields */}, Name: whereHelperstring{/* contains filtered or unexported fields */}, Status: whereHelperint{/* contains filtered or unexported fields */}, RequiredRoles: whereHelpertypes_Int64Array{/* contains filtered or unexported fields */}, BlacklistedRoles: whereHelpertypes_Int64Array{/* contains filtered or unexported fields */}, }
var TableNames = struct { SoundboardSounds string }{ SoundboardSounds: "soundboard_sounds", }
Functions ¶
func SoundboardSoundExists ¶
SoundboardSoundExists checks if the SoundboardSound row exists.
func SoundboardSoundExistsG ¶
SoundboardSoundExistsG checks if the SoundboardSound row exists.
func SoundboardSounds ¶
SoundboardSounds 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 SoundboardSound ¶
type SoundboardSound struct { ID int `boil:"id" json:"id" toml:"id" yaml:"id"` CreatedAt time.Time `boil:"created_at" json:"created_at" toml:"created_at" yaml:"created_at"` UpdatedAt time.Time `boil:"updated_at" json:"updated_at" toml:"updated_at" yaml:"updated_at"` GuildID int64 `boil:"guild_id" json:"guild_id" toml:"guild_id" yaml:"guild_id"` RequiredRole string `boil:"required_role" json:"required_role" toml:"required_role" yaml:"required_role"` Name string `boil:"name" json:"name" toml:"name" yaml:"name"` Status int `boil:"status" json:"status" toml:"status" yaml:"status"` RequiredRoles types.Int64Array `boil:"required_roles" json:"required_roles,omitempty" toml:"required_roles" yaml:"required_roles,omitempty"` BlacklistedRoles types.Int64Array `boil:"blacklisted_roles" json:"blacklisted_roles,omitempty" toml:"blacklisted_roles" yaml:"blacklisted_roles,omitempty"` R *soundboardSoundR `boil:"-" json:"-" toml:"-" yaml:"-"` L soundboardSoundL `boil:"-" json:"-" toml:"-" yaml:"-"` }
SoundboardSound is an object representing the database table.
func FindSoundboardSound ¶
func FindSoundboardSound(ctx context.Context, exec boil.ContextExecutor, iD int, selectCols ...string) (*SoundboardSound, error)
FindSoundboardSound retrieves a single record by ID with an executor. If selectCols is empty Find will return all columns.
func FindSoundboardSoundG ¶
func FindSoundboardSoundG(ctx context.Context, iD int, selectCols ...string) (*SoundboardSound, error)
FindSoundboardSoundG retrieves a single record by ID.
func (*SoundboardSound) Delete ¶
func (o *SoundboardSound) Delete(ctx context.Context, exec boil.ContextExecutor) (int64, error)
Delete deletes a single SoundboardSound record with an executor. Delete will match against the primary key column to find the record to delete.
func (*SoundboardSound) DeleteG ¶
func (o *SoundboardSound) DeleteG(ctx context.Context) (int64, error)
DeleteG deletes a single SoundboardSound record. DeleteG will match against the primary key column to find the record to delete.
func (*SoundboardSound) Exists ¶ added in v2.36.0
func (o *SoundboardSound) Exists(ctx context.Context, exec boil.ContextExecutor) (bool, error)
Exists checks if the SoundboardSound row exists.
func (*SoundboardSound) Insert ¶
func (o *SoundboardSound) 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 (*SoundboardSound) InsertG ¶
InsertG a single record. See Insert for whitelist behavior description.
func (*SoundboardSound) Reload ¶
func (o *SoundboardSound) Reload(ctx context.Context, exec boil.ContextExecutor) error
Reload refetches the object from the database using the primary keys with an executor.
func (*SoundboardSound) ReloadG ¶
func (o *SoundboardSound) ReloadG(ctx context.Context) error
ReloadG refetches the object from the database using the primary keys.
func (*SoundboardSound) Update ¶
func (o *SoundboardSound) Update(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) (int64, error)
Update uses an executor to update the SoundboardSound. 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 (*SoundboardSound) UpdateG ¶
UpdateG a single SoundboardSound record using the global executor. See Update for more documentation.
func (*SoundboardSound) Upsert ¶
func (o *SoundboardSound) Upsert(ctx context.Context, exec boil.ContextExecutor, updateOnConflict bool, conflictColumns []string, updateColumns, insertColumns boil.Columns, opts ...UpsertOptionFunc) 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 SoundboardSoundSlice ¶
type SoundboardSoundSlice []*SoundboardSound
SoundboardSoundSlice is an alias for a slice of pointers to SoundboardSound. This should almost always be used instead of []SoundboardSound.
func (SoundboardSoundSlice) DeleteAll ¶
func (o SoundboardSoundSlice) DeleteAll(ctx context.Context, exec boil.ContextExecutor) (int64, error)
DeleteAll deletes all rows in the slice, using an executor.
func (SoundboardSoundSlice) DeleteAllG ¶
func (o SoundboardSoundSlice) DeleteAllG(ctx context.Context) (int64, error)
DeleteAllG deletes all rows in the slice.
func (*SoundboardSoundSlice) ReloadAll ¶
func (o *SoundboardSoundSlice) 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 (*SoundboardSoundSlice) ReloadAllG ¶
func (o *SoundboardSoundSlice) 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 (SoundboardSoundSlice) UpdateAll ¶
func (o SoundboardSoundSlice) UpdateAll(ctx context.Context, exec boil.ContextExecutor, cols M) (int64, error)
UpdateAll updates all rows with the specified column values, using an executor.
func (SoundboardSoundSlice) UpdateAllG ¶
UpdateAllG updates all rows with the specified column values.
type UpsertOptionFunc ¶ added in v2.36.0
type UpsertOptionFunc func(o *UpsertOptions)
func UpsertConflictTarget ¶ added in v2.36.0
func UpsertConflictTarget(conflictTarget string) UpsertOptionFunc
func UpsertUpdateSet ¶ added in v2.36.0
func UpsertUpdateSet(updateSet string) UpsertOptionFunc
type UpsertOptions ¶ added in v2.36.0
type UpsertOptions struct {
// contains filtered or unexported fields
}