manager/ent/logentry/logentry.go

70 lines
2.3 KiB
Go
Raw Normal View History

2022-04-08 21:26:25 +02:00
// Code generated by entc, DO NOT EDIT.
package logentry
import (
"time"
)
const (
// Label holds the string label denoting the logentry type in the database.
Label = "logentry"
// FieldID holds the string denoting the id field in the database.
FieldID = "id"
// FieldTimestamp holds the string denoting the timestamp field in the database.
FieldTimestamp = "timestamp"
// FieldAction holds the string denoting the action field in the database.
FieldAction = "action"
// FieldData holds the string denoting the data field in the database.
FieldData = "data"
// FieldAccountID holds the string denoting the account_id field in the database.
FieldAccountID = "account_id"
// FieldDomainID holds the string denoting the domain_id field in the database.
FieldDomainID = "domain_id"
// EdgeAccount holds the string denoting the account edge name in mutations.
EdgeAccount = "account"
// EdgeDomain holds the string denoting the domain edge name in mutations.
EdgeDomain = "domain"
// Table holds the table name of the logentry in the database.
Table = "logentries"
// AccountTable is the table that holds the account relation/edge.
AccountTable = "logentries"
// AccountInverseTable is the table name for the Account entity.
// It exists in this package in order to avoid circular dependency with the "account" package.
AccountInverseTable = "accounts"
// AccountColumn is the table column denoting the account relation/edge.
AccountColumn = "account_id"
// DomainTable is the table that holds the domain relation/edge.
DomainTable = "logentries"
// 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 logentry fields.
var Columns = []string{
FieldID,
FieldTimestamp,
FieldAction,
FieldData,
FieldAccountID,
FieldDomainID,
}
// 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 (
// DefaultTimestamp holds the default value on creation for the "timestamp" field.
DefaultTimestamp func() time.Time
)