Documentation
¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.History) predicate.History
- func DefinitionIsNil() predicate.History
- func DefinitionNotNil() predicate.History
- func HasJob() predicate.History
- func HasJobWith(preds ...predicate.Job) predicate.History
- func ID(id int) predicate.History
- func IDEQ(id int) predicate.History
- func IDGT(id int) predicate.History
- func IDGTE(id int) predicate.History
- func IDIn(ids ...int) predicate.History
- func IDLT(id int) predicate.History
- func IDLTE(id int) predicate.History
- func IDNEQ(id int) predicate.History
- func IDNotIn(ids ...int) predicate.History
- func Mtime(v time.Time) predicate.History
- func MtimeEQ(v time.Time) predicate.History
- func MtimeGT(v time.Time) predicate.History
- func MtimeGTE(v time.Time) predicate.History
- func MtimeIn(vs ...time.Time) predicate.History
- func MtimeLT(v time.Time) predicate.History
- func MtimeLTE(v time.Time) predicate.History
- func MtimeNEQ(v time.Time) predicate.History
- func MtimeNotIn(vs ...time.Time) predicate.History
- func Not(p predicate.History) predicate.History
- func Or(predicates ...predicate.History) predicate.History
- func StatusIsNil() predicate.History
- func StatusNotNil() predicate.History
- func ValidColumn(column string) bool
- type OrderOption
Constants ¶
const ( // Label holds the string label denoting the history type in the database. Label = "history" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldMtime holds the string denoting the mtime field in the database. FieldMtime = "mtime" // FieldStatus holds the string denoting the status field in the database. FieldStatus = "status" // FieldDefinition holds the string denoting the definition field in the database. FieldDefinition = "definition" // EdgeJob holds the string denoting the job edge name in mutations. EdgeJob = "job" // Table holds the table name of the history in the database. Table = "history" // JobTable is the table that holds the job relation/edge. JobTable = "history" // JobInverseTable is the table name for the Job entity. // It exists in this package in order to avoid circular dependency with the "job" package. JobInverseTable = "job" // JobColumn is the table column denoting the job relation/edge. JobColumn = "job_history" )
Variables ¶
var Columns = []string{ FieldID, FieldMtime, FieldStatus, FieldDefinition, }
Columns holds all SQL columns for history fields.
var ForeignKeys = []string{
"job_history",
}
ForeignKeys holds the SQL foreign-keys that are owned by the "history" table and are not defined as standalone fields in the schema.
Functions ¶
func DefinitionIsNil ¶
DefinitionIsNil applies the IsNil predicate on the "definition" field.
func DefinitionNotNil ¶
DefinitionNotNil applies the NotNil predicate on the "definition" field.
func HasJobWith ¶
HasJobWith applies the HasEdge predicate on the "job" edge with a given conditions (other predicates).
func Mtime ¶
Mtime applies equality check predicate on the "mtime" field. It's identical to MtimeEQ.
func MtimeNotIn ¶
MtimeNotIn applies the NotIn predicate on the "mtime" field.
func StatusIsNil ¶
StatusIsNil applies the IsNil predicate on the "status" field.
func StatusNotNil ¶
StatusNotNil applies the NotNil predicate on the "status" field.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
Types ¶
type OrderOption ¶
OrderOption defines the ordering options for the History queries.
func ByID ¶
func ByID(opts ...sql.OrderTermOption) OrderOption
ByID orders the results by the id field.
func ByJobField ¶
func ByJobField(field string, opts ...sql.OrderTermOption) OrderOption
ByJobField orders the results by job field.
func ByMtime ¶
func ByMtime(opts ...sql.OrderTermOption) OrderOption
ByMtime orders the results by the mtime field.