mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
* entc/gen: add OwnFK indicator for type edges * entc/gen: add Edges field for generated types * entc/gen: add With<T> method to query-builder template * entc/gen: scan and assign foreign-keys on eager-loading * entc/gen: load fk-relations (wip) * entc/integration: add o2m/m2o tests for eager-loading * entc/gen: add m2m support for eager-loading * entc/gen: add integration tests for m2m and subgraphs * entc/gen/integration: add tests for o2o eager-loading * all: generate all assets
59 lines
2.3 KiB
Go
59 lines
2.3 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 by entc, DO NOT EDIT.
|
|
|
|
package user
|
|
|
|
const (
|
|
// Label holds the string label denoting the user type in the database.
|
|
Label = "user"
|
|
// FieldID holds the string denoting the id field in the database.
|
|
FieldID = "id"
|
|
// FieldAge holds the string denoting the age vertex property in the database.
|
|
FieldAge = "age"
|
|
// FieldName holds the string denoting the name vertex property in the database.
|
|
FieldName = "name"
|
|
|
|
// Table holds the table name of the user in the database.
|
|
Table = "users"
|
|
// PetsTable is the table the holds the pets relation/edge.
|
|
PetsTable = "pets"
|
|
// PetsInverseTable is the table name for the Pet entity.
|
|
// It exists in this package in order to avoid circular dependency with the "pet" package.
|
|
PetsInverseTable = "pets"
|
|
// PetsColumn is the table column denoting the pets relation/edge.
|
|
PetsColumn = "owner_id"
|
|
// FriendsTable is the table the holds the friends relation/edge. The primary key declared below.
|
|
FriendsTable = "user_friends"
|
|
// GroupsTable is the table the holds the groups relation/edge. The primary key declared below.
|
|
GroupsTable = "group_users"
|
|
// GroupsInverseTable is the table name for the Group entity.
|
|
// It exists in this package in order to avoid circular dependency with the "group" package.
|
|
GroupsInverseTable = "groups"
|
|
// ManageTable is the table the holds the manage relation/edge.
|
|
ManageTable = "groups"
|
|
// ManageInverseTable is the table name for the Group entity.
|
|
// It exists in this package in order to avoid circular dependency with the "group" package.
|
|
ManageInverseTable = "groups"
|
|
// ManageColumn is the table column denoting the manage relation/edge.
|
|
ManageColumn = "admin_id"
|
|
)
|
|
|
|
// Columns holds all SQL columns for user fields.
|
|
var Columns = []string{
|
|
FieldID,
|
|
FieldAge,
|
|
FieldName,
|
|
}
|
|
|
|
var (
|
|
// FriendsPrimaryKey and FriendsColumn2 are the table columns denoting the
|
|
// primary key for the friends relation (M2M).
|
|
FriendsPrimaryKey = []string{"user_id", "friend_id"}
|
|
// GroupsPrimaryKey and GroupsColumn2 are the table columns denoting the
|
|
// primary key for the groups relation (M2M).
|
|
GroupsPrimaryKey = []string{"group_id", "user_id"}
|
|
)
|