klefki/internal/db/ent/machine/machine.go
Jared Allard 886e8aa11e
All checks were successful
tests / golangci-lint (push) Successful in 51s
tests / go test (push) Successful in 55s
feat: key generation, basic CLI
2025-02-22 22:11:11 -08:00

55 lines
1.5 KiB
Go
Generated

// Code generated by ent, DO NOT EDIT.
package machine
import (
"entgo.io/ent/dialect/sql"
)
const (
// Label holds the string label denoting the machine type in the database.
Label = "machine"
// FieldID holds the string denoting the id field in the database.
FieldID = "id"
// FieldPublicKey holds the string denoting the public_key field in the database.
FieldPublicKey = "public_key"
// FieldCreatedAt holds the string denoting the created_at field in the database.
FieldCreatedAt = "created_at"
// Table holds the table name of the machine in the database.
Table = "machines"
)
// Columns holds all SQL columns for machine fields.
var Columns = []string{
FieldID,
FieldPublicKey,
FieldCreatedAt,
}
// 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 (
// DefaultCreatedAt holds the default value on creation for the "created_at" field.
DefaultCreatedAt string
)
// OrderOption defines the ordering options for the Machine queries.
type OrderOption func(*sql.Selector)
// ByID orders the results by the id field.
func ByID(opts ...sql.OrderTermOption) OrderOption {
return sql.OrderByField(FieldID, opts...).ToFunc()
}
// ByCreatedAt orders the results by the created_at field.
func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption {
return sql.OrderByField(FieldCreatedAt, opts...).ToFunc()
}