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 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
// 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 task
import (
"fmt"
"github.com/facebook/ent"
)
const (
// Label holds the string label denoting the task type in the database.
Label = "task"
// FieldID holds the string denoting the id field in the database.
FieldID = "id"
// FieldTitle holds the string denoting the title field in the database.
FieldTitle = "title"
// FieldDescription holds the string denoting the description field in the database.
FieldDescription = "description"
// FieldStatus holds the string denoting the status field in the database.
FieldStatus = "status"
// FieldUUID holds the string denoting the uuid field in the database.
FieldUUID = "uuid"
// EdgeTeams holds the string denoting the teams edge name in mutations.
EdgeTeams = "teams"
// EdgeOwner holds the string denoting the owner edge name in mutations.
EdgeOwner = "owner"
// Table holds the table name of the task in the database.
Table = "tasks"
// TeamsTable is the table the holds the teams relation/edge. The primary key declared below.
TeamsTable = "task_teams"
// TeamsInverseTable is the table name for the Team entity.
// It exists in this package in order to avoid circular dependency with the "team" package.
TeamsInverseTable = "teams"
// OwnerTable is the table the holds the owner relation/edge.
OwnerTable = "tasks"
// 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_tasks"
)
// Columns holds all SQL columns for task fields.
var Columns = []string{
FieldID,
FieldTitle,
FieldDescription,
FieldStatus,
FieldUUID,
}
// ForeignKeys holds the SQL foreign-keys that are owned by the Task type.
var ForeignKeys = []string{
"user_tasks",
}
var (
// TeamsPrimaryKey and TeamsColumn2 are the table columns denoting the
// primary key for the teams relation (M2M).
TeamsPrimaryKey = []string{"task_id", "team_id"}
)
// 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
}
// Note that the variables below are initialized by the runtime
// package on the initialization of the application. Therefore,
// it should be imported in the main as follows:
//
// import _ "github.com/facebook/ent/entc/integration/privacy/ent/runtime"
//
var (
Hooks [2]ent.Hook
Policy ent.Policy
// TitleValidator is a validator for the "title" field. It is called by the builders before save.
TitleValidator func(string) error
)
// Status defines the type for the "status" enum field.
type Status string
// StatusPlanned is the default value of the Status enum.
const DefaultStatus = StatusPlanned
// Status values.
const (
StatusPlanned Status = "planned"
StatusInProgress Status = "in_progress"
StatusClosed Status = "closed"
)
func (s Status) String() string {
return string(s)
}
// StatusValidator is a validator for the "status" field enum values. It is called by the builders before save.
func StatusValidator(s Status) error {
switch s {
case StatusPlanned, StatusInProgress, StatusClosed:
return nil
default:
return fmt.Errorf("task: invalid enum value for status field: %q", s)
}
}
|