1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
// Copyright 2019-present Facebook Inc. All rights reserved.
// This source code is licensed under the Apache 2.0 license found
// in the LICENSE file in the root directory of this source tree.
// Code generated by ent, DO NOT EDIT.
package bloblink
import (
"time"
)
const (
// Label holds the string label denoting the bloblink type in the database.
Label = "blob_link"
// FieldCreatedAt holds the string denoting the created_at field in the database.
FieldCreatedAt = "created_at"
// FieldBlobID holds the string denoting the blob_id field in the database.
FieldBlobID = "blob_id"
// FieldLinkID holds the string denoting the link_id field in the database.
FieldLinkID = "link_id"
// EdgeBlob holds the string denoting the blob edge name in mutations.
EdgeBlob = "blob"
// EdgeLink holds the string denoting the link edge name in mutations.
EdgeLink = "link"
// BlobFieldID holds the string denoting the ID field of the Blob.
BlobFieldID = "id"
// Table holds the table name of the bloblink in the database.
Table = "blob_links"
// BlobTable is the table that holds the blob relation/edge.
BlobTable = "blob_links"
// BlobInverseTable is the table name for the Blob entity.
// It exists in this package in order to avoid circular dependency with the "blob" package.
BlobInverseTable = "blobs"
// BlobColumn is the table column denoting the blob relation/edge.
BlobColumn = "blob_id"
// LinkTable is the table that holds the link relation/edge.
LinkTable = "blob_links"
// LinkInverseTable is the table name for the Blob entity.
// It exists in this package in order to avoid circular dependency with the "blob" package.
LinkInverseTable = "blobs"
// LinkColumn is the table column denoting the link relation/edge.
LinkColumn = "link_id"
)
// Columns holds all SQL columns for bloblink fields.
var Columns = []string{
FieldCreatedAt,
FieldBlobID,
FieldLinkID,
}
// 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 func() time.Time
)
|