models

package
v0.14.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 22, 2020 License: MIT Imports: 15 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
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.

View Source
var EventColumns = struct {
	ID     string
	Time   string
	Type   string
	Client string
	Device string
	Data   string
}{
	ID:     "id",
	Time:   "time",
	Type:   "type",
	Client: "client",
	Device: "device",
	Data:   "data",
}
View Source
var EventRels = struct {
}{}

EventRels is where relationship names are stored.

View Source
var EventWhere = struct {
	ID     whereHelperint
	Time   whereHelpertime_Time
	Type   whereHelperstring
	Client whereHelperstring
	Device whereHelpernull_String
	Data   whereHelpernull_JSON
}{
	ID:     whereHelperint{/* contains filtered or unexported fields */},
	Time:   whereHelpertime_Time{/* contains filtered or unexported fields */},
	Type:   whereHelperstring{/* contains filtered or unexported fields */},
	Client: whereHelperstring{/* contains filtered or unexported fields */},
	Device: whereHelpernull_String{/* contains filtered or unexported fields */},
	Data:   whereHelpernull_JSON{/* contains filtered or unexported fields */},
}
View Source
var GorpMigrationColumns = struct {
	ID        string
	AppliedAt string
}{
	ID:        "id",
	AppliedAt: "applied_at",
}
View Source
var GorpMigrationRels = struct {
}{}

GorpMigrationRels is where relationship names are stored.

View Source
var GorpMigrationWhere = struct {
	ID        whereHelperstring
	AppliedAt whereHelpernull_Time
}{
	ID:        whereHelperstring{/* contains filtered or unexported fields */},
	AppliedAt: whereHelpernull_Time{/* contains filtered or unexported fields */},
}
View Source
var TableNames = struct {
	Events         string
	GorpMigrations string
}{
	Events:         "events",
	GorpMigrations: "gorp_migrations",
}

Functions

func AddEventHook

func AddEventHook(hookPoint boil.HookPoint, eventHook EventHook)

AddEventHook registers your hook function for all future operations.

func AddGorpMigrationHook

func AddGorpMigrationHook(hookPoint boil.HookPoint, gorpMigrationHook GorpMigrationHook)

AddGorpMigrationHook registers your hook function for all future operations.

func EventExists

func EventExists(exec boil.Executor, iD int, time time.Time) (bool, error)

EventExists checks if the Event row exists.

func EventExistsG

func EventExistsG(iD int, time time.Time) (bool, error)

EventExistsG checks if the Event row exists.

func Events

func Events(mods ...qm.QueryMod) eventQuery

Events retrieves all the records using an executor.

func GorpMigrationExists

func GorpMigrationExists(exec boil.Executor, iD string) (bool, error)

GorpMigrationExists checks if the GorpMigration row exists.

func GorpMigrationExistsG

func GorpMigrationExistsG(iD string) (bool, error)

GorpMigrationExistsG checks if the GorpMigration row exists.

func GorpMigrations

func GorpMigrations(mods ...qm.QueryMod) gorpMigrationQuery

GorpMigrations retrieves all the records using an executor.

func NewQuery

func NewQuery(mods ...qm.QueryMod) *queries.Query

NewQuery initializes a new Query using the passed in QueryMods

Types

type Event

type Event struct {
	ID     int         `boil:"id" json:"id" toml:"id" yaml:"id"`
	Time   time.Time   `boil:"time" json:"time" toml:"time" yaml:"time"`
	Type   string      `boil:"type" json:"type" toml:"type" yaml:"type"`
	Client string      `boil:"client" json:"client" toml:"client" yaml:"client"`
	Device null.String `boil:"device" json:"device,omitempty" toml:"device" yaml:"device,omitempty"`
	Data   null.JSON   `boil:"data" json:"data,omitempty" toml:"data" yaml:"data,omitempty"`

	R *eventR `boil:"-" json:"-" toml:"-" yaml:"-"`
	L eventL  `boil:"-" json:"-" toml:"-" yaml:"-"`
}

Event is an object representing the database table.

func FindEvent

func FindEvent(exec boil.Executor, iD int, time time.Time, selectCols ...string) (*Event, error)

FindEvent retrieves a single record by ID with an executor. If selectCols is empty Find will return all columns.

func FindEventG

func FindEventG(iD int, time time.Time, selectCols ...string) (*Event, error)

FindEventG retrieves a single record by ID.

func (*Event) Delete

func (o *Event) Delete(exec boil.Executor) (int64, error)

Delete deletes a single Event record with an executor. Delete will match against the primary key column to find the record to delete.

func (*Event) DeleteG

func (o *Event) DeleteG() (int64, error)

DeleteG deletes a single Event record. DeleteG will match against the primary key column to find the record to delete.

func (*Event) Insert

func (o *Event) Insert(exec boil.Executor, columns boil.Columns) error

Insert a single record using an executor. See boil.Columns.InsertColumnSet documentation to understand column list inference for inserts.

func (*Event) InsertG

func (o *Event) InsertG(columns boil.Columns) error

InsertG a single record. See Insert for whitelist behavior description.

func (*Event) Reload

func (o *Event) Reload(exec boil.Executor) error

Reload refetches the object from the database using the primary keys with an executor.

func (*Event) ReloadG

func (o *Event) ReloadG() error

ReloadG refetches the object from the database using the primary keys.

func (*Event) Update

func (o *Event) Update(exec boil.Executor, columns boil.Columns) (int64, error)

Update uses an executor to update the Event. 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 (*Event) UpdateG

func (o *Event) UpdateG(columns boil.Columns) (int64, error)

UpdateG a single Event record using the global executor. See Update for more documentation.

func (*Event) Upsert

func (o *Event) Upsert(exec boil.Executor, 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.

func (*Event) UpsertG

func (o *Event) UpsertG(updateOnConflict bool, conflictColumns []string, updateColumns, insertColumns boil.Columns) error

UpsertG attempts an insert, and does an update or ignore on conflict.

type EventHook

type EventHook func(boil.Executor, *Event) error

EventHook is the signature for custom Event hook methods

type EventSlice

type EventSlice []*Event

EventSlice is an alias for a slice of pointers to Event. This should generally be used opposed to []Event.

func (EventSlice) DeleteAll

func (o EventSlice) DeleteAll(exec boil.Executor) (int64, error)

DeleteAll deletes all rows in the slice, using an executor.

func (EventSlice) DeleteAllG

func (o EventSlice) DeleteAllG() (int64, error)

DeleteAllG deletes all rows in the slice.

func (*EventSlice) ReloadAll

func (o *EventSlice) ReloadAll(exec boil.Executor) error

ReloadAll refetches every row with matching primary key column values and overwrites the original object slice with the newly updated slice.

func (*EventSlice) ReloadAllG

func (o *EventSlice) ReloadAllG() error

ReloadAllG refetches every row with matching primary key column values and overwrites the original object slice with the newly updated slice.

func (EventSlice) UpdateAll

func (o EventSlice) UpdateAll(exec boil.Executor, cols M) (int64, error)

UpdateAll updates all rows with the specified column values, using an executor.

func (EventSlice) UpdateAllG

func (o EventSlice) UpdateAllG(cols M) (int64, error)

UpdateAllG updates all rows with the specified column values.

type GorpMigration

type GorpMigration struct {
	ID        string    `boil:"id" json:"id" toml:"id" yaml:"id"`
	AppliedAt null.Time `boil:"applied_at" json:"applied_at,omitempty" toml:"applied_at" yaml:"applied_at,omitempty"`

	R *gorpMigrationR `boil:"-" json:"-" toml:"-" yaml:"-"`
	L gorpMigrationL  `boil:"-" json:"-" toml:"-" yaml:"-"`
}

GorpMigration is an object representing the database table.

func FindGorpMigration

func FindGorpMigration(exec boil.Executor, iD string, selectCols ...string) (*GorpMigration, error)

FindGorpMigration retrieves a single record by ID with an executor. If selectCols is empty Find will return all columns.

func FindGorpMigrationG

func FindGorpMigrationG(iD string, selectCols ...string) (*GorpMigration, error)

FindGorpMigrationG retrieves a single record by ID.

func (*GorpMigration) Delete

func (o *GorpMigration) Delete(exec boil.Executor) (int64, error)

Delete deletes a single GorpMigration record with an executor. Delete will match against the primary key column to find the record to delete.

func (*GorpMigration) DeleteG

func (o *GorpMigration) DeleteG() (int64, error)

DeleteG deletes a single GorpMigration record. DeleteG will match against the primary key column to find the record to delete.

func (*GorpMigration) Insert

func (o *GorpMigration) Insert(exec boil.Executor, columns boil.Columns) error

Insert a single record using an executor. See boil.Columns.InsertColumnSet documentation to understand column list inference for inserts.

func (*GorpMigration) InsertG

func (o *GorpMigration) InsertG(columns boil.Columns) error

InsertG a single record. See Insert for whitelist behavior description.

func (*GorpMigration) Reload

func (o *GorpMigration) Reload(exec boil.Executor) error

Reload refetches the object from the database using the primary keys with an executor.

func (*GorpMigration) ReloadG

func (o *GorpMigration) ReloadG() error

ReloadG refetches the object from the database using the primary keys.

func (*GorpMigration) Update

func (o *GorpMigration) Update(exec boil.Executor, columns boil.Columns) (int64, error)

Update uses an executor to update the GorpMigration. 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 (*GorpMigration) UpdateG

func (o *GorpMigration) UpdateG(columns boil.Columns) (int64, error)

UpdateG a single GorpMigration record using the global executor. See Update for more documentation.

func (*GorpMigration) Upsert

func (o *GorpMigration) Upsert(exec boil.Executor, 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.

func (*GorpMigration) UpsertG

func (o *GorpMigration) UpsertG(updateOnConflict bool, conflictColumns []string, updateColumns, insertColumns boil.Columns) error

UpsertG attempts an insert, and does an update or ignore on conflict.

type GorpMigrationHook

type GorpMigrationHook func(boil.Executor, *GorpMigration) error

GorpMigrationHook is the signature for custom GorpMigration hook methods

type GorpMigrationSlice

type GorpMigrationSlice []*GorpMigration

GorpMigrationSlice is an alias for a slice of pointers to GorpMigration. This should generally be used opposed to []GorpMigration.

func (GorpMigrationSlice) DeleteAll

func (o GorpMigrationSlice) DeleteAll(exec boil.Executor) (int64, error)

DeleteAll deletes all rows in the slice, using an executor.

func (GorpMigrationSlice) DeleteAllG

func (o GorpMigrationSlice) DeleteAllG() (int64, error)

DeleteAllG deletes all rows in the slice.

func (*GorpMigrationSlice) ReloadAll

func (o *GorpMigrationSlice) ReloadAll(exec boil.Executor) error

ReloadAll refetches every row with matching primary key column values and overwrites the original object slice with the newly updated slice.

func (*GorpMigrationSlice) ReloadAllG

func (o *GorpMigrationSlice) ReloadAllG() error

ReloadAllG refetches every row with matching primary key column values and overwrites the original object slice with the newly updated slice.

func (GorpMigrationSlice) UpdateAll

func (o GorpMigrationSlice) UpdateAll(exec boil.Executor, cols M) (int64, error)

UpdateAll updates all rows with the specified column values, using an executor.

func (GorpMigrationSlice) UpdateAllG

func (o GorpMigrationSlice) UpdateAllG(cols M) (int64, error)

UpdateAllG updates all rows with the specified column values.

type M

type M map[string]interface{}

M type is for providing columns and column values to UpdateAll.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL