migration

package
v0.0.0-...-cac1a42 Latest Latest
Warning

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

Go to latest
Published: Dec 21, 2022 License: MIT Imports: 3 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the migration type in the database.
	Label = "migration"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldAppliedAt holds the string denoting the applied_at field in the database.
	FieldAppliedAt = "applied_at"
	// Table holds the table name of the migration in the database.
	Table = "migrations"
)

Variables

View Source
var (
	// NameValidator is a validator for the "name" field. It is called by the builders before save.
	NameValidator func(string) error
	// DefaultAppliedAt holds the default value on creation for the "applied_at" field.
	DefaultAppliedAt func() time.Time
	// UpdateDefaultAppliedAt holds the default value on update for the "applied_at" field.
	UpdateDefaultAppliedAt func() time.Time
)

Columns holds all SQL columns for migration fields.

Functions

func And

func And(predicates ...predicate.Migration) predicate.Migration

And groups predicates with the AND operator between them.

func AppliedAt

func AppliedAt(v time.Time) predicate.Migration

AppliedAt applies equality check predicate on the "applied_at" field. It's identical to AppliedAtEQ.

func AppliedAtEQ

func AppliedAtEQ(v time.Time) predicate.Migration

AppliedAtEQ applies the EQ predicate on the "applied_at" field.

func AppliedAtGT

func AppliedAtGT(v time.Time) predicate.Migration

AppliedAtGT applies the GT predicate on the "applied_at" field.

func AppliedAtGTE

func AppliedAtGTE(v time.Time) predicate.Migration

AppliedAtGTE applies the GTE predicate on the "applied_at" field.

func AppliedAtIn

func AppliedAtIn(vs ...time.Time) predicate.Migration

AppliedAtIn applies the In predicate on the "applied_at" field.

func AppliedAtLT

func AppliedAtLT(v time.Time) predicate.Migration

AppliedAtLT applies the LT predicate on the "applied_at" field.

func AppliedAtLTE

func AppliedAtLTE(v time.Time) predicate.Migration

AppliedAtLTE applies the LTE predicate on the "applied_at" field.

func AppliedAtNEQ

func AppliedAtNEQ(v time.Time) predicate.Migration

AppliedAtNEQ applies the NEQ predicate on the "applied_at" field.

func AppliedAtNotIn

func AppliedAtNotIn(vs ...time.Time) predicate.Migration

AppliedAtNotIn applies the NotIn predicate on the "applied_at" field.

func ID

func ID(id int) predicate.Migration

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id int) predicate.Migration

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id int) predicate.Migration

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id int) predicate.Migration

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...int) predicate.Migration

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id int) predicate.Migration

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id int) predicate.Migration

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id int) predicate.Migration

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...int) predicate.Migration

IDNotIn applies the NotIn predicate on the ID field.

func Name

func Name(v string) predicate.Migration

Name applies equality check predicate on the "name" field. It's identical to NameEQ.

func NameContains

func NameContains(v string) predicate.Migration

NameContains applies the Contains predicate on the "name" field.

func NameContainsFold

func NameContainsFold(v string) predicate.Migration

NameContainsFold applies the ContainsFold predicate on the "name" field.

func NameEQ

func NameEQ(v string) predicate.Migration

NameEQ applies the EQ predicate on the "name" field.

func NameEqualFold

func NameEqualFold(v string) predicate.Migration

NameEqualFold applies the EqualFold predicate on the "name" field.

func NameGT

func NameGT(v string) predicate.Migration

NameGT applies the GT predicate on the "name" field.

func NameGTE

func NameGTE(v string) predicate.Migration

NameGTE applies the GTE predicate on the "name" field.

func NameHasPrefix

func NameHasPrefix(v string) predicate.Migration

NameHasPrefix applies the HasPrefix predicate on the "name" field.

func NameHasSuffix

func NameHasSuffix(v string) predicate.Migration

NameHasSuffix applies the HasSuffix predicate on the "name" field.

func NameIn

func NameIn(vs ...string) predicate.Migration

NameIn applies the In predicate on the "name" field.

func NameLT

func NameLT(v string) predicate.Migration

NameLT applies the LT predicate on the "name" field.

func NameLTE

func NameLTE(v string) predicate.Migration

NameLTE applies the LTE predicate on the "name" field.

func NameNEQ

func NameNEQ(v string) predicate.Migration

NameNEQ applies the NEQ predicate on the "name" field.

func NameNotIn

func NameNotIn(vs ...string) predicate.Migration

NameNotIn applies the NotIn predicate on the "name" field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.Migration) predicate.Migration

Or groups predicates with the OR operator between them.

func ValidColumn

func ValidColumn(column string) bool

ValidColumn reports if the column name is valid (part of the table columns).

Types

This section is empty.

Jump to

Keyboard shortcuts

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