manager/ent/alias/alias.go

65 lines
2.0 KiB
Go
Raw Normal View History

2022-04-08 21:26:25 +02:00
// Code generated by entc, DO NOT EDIT.
package alias
import (
"time"
)
const (
// Label holds the string label denoting the alias type in the database.
Label = "alias"
// FieldID holds the string denoting the id field in the database.
FieldID = "id"
// FieldCreated holds the string denoting the created field in the database.
FieldCreated = "created"
// FieldModified holds the string denoting the modified field in the database.
FieldModified = "modified"
// FieldDomainID holds the string denoting the domain_id field in the database.
FieldDomainID = "domain_id"
// FieldGoto holds the string denoting the goto field in the database.
FieldGoto = "goto"
// FieldActive holds the string denoting the active field in the database.
FieldActive = "active"
// EdgeDomain holds the string denoting the domain edge name in mutations.
EdgeDomain = "domain"
// Table holds the table name of the alias in the database.
Table = "alias"
// DomainTable is the table that holds the domain relation/edge.
DomainTable = "alias"
// DomainInverseTable is the table name for the Domain entity.
// It exists in this package in order to avoid circular dependency with the "domain" package.
DomainInverseTable = "domains"
// DomainColumn is the table column denoting the domain relation/edge.
DomainColumn = "domain_id"
)
// Columns holds all SQL columns for alias fields.
var Columns = []string{
FieldID,
FieldCreated,
FieldModified,
FieldDomainID,
FieldGoto,
FieldActive,
}
// ValidColumn reports if the column name is valid (part of the table columns).
func ValidColumn(column string) bool {
for i := range Columns {
if column == Columns[i] {
return true
}
}
return false
}
var (
// DefaultCreated holds the default value on creation for the "created" field.
DefaultCreated func() time.Time
// DefaultModified holds the default value on creation for the "modified" field.
DefaultModified func() time.Time
// UpdateDefaultModified holds the default value on update for the "modified" field.
UpdateDefaultModified func() time.Time
)