mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
Reviewed By: alexsn Differential Revision: D17734937 fbshipit-source-id: abced88c23b7385d371361c5069292de5c1c5b1e
50 lines
1.6 KiB
Go
50 lines
1.6 KiB
Go
// Copyright (c) Facebook, Inc. and its affiliates. 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 (@generated) by entc, DO NOT EDIT.
|
|
|
|
package group
|
|
|
|
import (
|
|
"github.com/facebookincubator/ent/examples/start/ent/schema"
|
|
)
|
|
|
|
const (
|
|
// Label holds the string label denoting the group type in the database.
|
|
Label = "group"
|
|
// FieldID holds the string denoting the id field in the database.
|
|
FieldID = "id"
|
|
// FieldName holds the string denoting the name vertex property in the database.
|
|
FieldName = "name"
|
|
|
|
// Table holds the table name of the group in the database.
|
|
Table = "groups"
|
|
// UsersTable is the table the holds the users relation/edge. The primary key declared below.
|
|
UsersTable = "group_users"
|
|
// UsersInverseTable is the table name for the User entity.
|
|
// It exists in this package in order to avoid circular dependency with the "user" package.
|
|
UsersInverseTable = "users"
|
|
)
|
|
|
|
// Columns holds all SQL columns are group fields.
|
|
var Columns = []string{
|
|
FieldID,
|
|
FieldName,
|
|
}
|
|
|
|
var (
|
|
// UsersPrimaryKey and UsersColumn2 are the table columns denoting the
|
|
// primary key for the users relation (M2M).
|
|
UsersPrimaryKey = []string{"group_id", "user_id"}
|
|
)
|
|
|
|
var (
|
|
fields = schema.Group{}.Fields()
|
|
|
|
// descName is the schema descriptor for name field.
|
|
descName = fields[0].Descriptor()
|
|
// NameValidator is a validator for the "name" field. It is called by the builders before save.
|
|
NameValidator = descName.Validators[0].(func(string) error)
|
|
)
|