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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
// 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 entc, DO NOT EDIT.
package file
const (
// Label holds the string label denoting the file type in the database.
Label = "file"
// FieldID holds the string denoting the id field in the database.
FieldID = "id"
// FieldSize holds the string denoting the size field in the database.
FieldSize = "fsize"
// FieldName holds the string denoting the name field in the database.
FieldName = "name"
// FieldUser holds the string denoting the user field in the database.
FieldUser = "user"
// FieldGroup holds the string denoting the group field in the database.
FieldGroup = "group"
// FieldOp holds the string denoting the op field in the database.
FieldOp = "op"
// EdgeOwner holds the string denoting the owner edge name in mutations.
EdgeOwner = "owner"
// EdgeType holds the string denoting the type edge name in mutations.
EdgeType = "type"
// EdgeField holds the string denoting the field edge name in mutations.
EdgeField = "field"
// Table holds the table name of the file in the database.
Table = "files"
// OwnerTable is the table the holds the owner relation/edge.
OwnerTable = "files"
// OwnerInverseTable is the table name for the User entity.
// It exists in this package in order to avoid circular dependency with the "user" package.
OwnerInverseTable = "users"
// OwnerColumn is the table column denoting the owner relation/edge.
OwnerColumn = "user_files"
// TypeTable is the table the holds the type relation/edge.
TypeTable = "files"
// TypeInverseTable is the table name for the FileType entity.
// It exists in this package in order to avoid circular dependency with the "filetype" package.
TypeInverseTable = "file_types"
// TypeColumn is the table column denoting the type relation/edge.
TypeColumn = "file_type_files"
// FieldTable is the table the holds the field relation/edge.
FieldTable = "field_types"
// FieldInverseTable is the table name for the FieldType entity.
// It exists in this package in order to avoid circular dependency with the "fieldtype" package.
FieldInverseTable = "field_types"
// FieldColumn is the table column denoting the field relation/edge.
FieldColumn = "file_field"
)
// Columns holds all SQL columns for file fields.
var Columns = []string{
FieldID,
FieldSize,
FieldName,
FieldUser,
FieldGroup,
FieldOp,
}
// ForeignKeys holds the SQL foreign-keys that are owned by the File type.
var ForeignKeys = []string{
"file_type_files",
"group_files",
"user_files",
}
// 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
}
}
for i := range ForeignKeys {
if column == ForeignKeys[i] {
return true
}
}
return false
}
var (
// DefaultSize holds the default value on creation for the "size" field.
DefaultSize int
// SizeValidator is a validator for the "size" field. It is called by the builders before save.
SizeValidator func(int) error
)
// comment from another template.
|