mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
39 lines
1.5 KiB
Go
39 lines
1.5 KiB
Go
// 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 ent
|
|
|
|
import (
|
|
"entgo.io/ent/entc/integration/multischema/ent/group"
|
|
"entgo.io/ent/entc/integration/multischema/ent/pet"
|
|
"entgo.io/ent/entc/integration/multischema/ent/schema"
|
|
"entgo.io/ent/entc/integration/multischema/ent/user"
|
|
)
|
|
|
|
// The init function reads all schema descriptors with runtime code
|
|
// (default values, validators, hooks and policies) and stitches it
|
|
// to their package variables.
|
|
func init() {
|
|
groupFields := schema.Group{}.Fields()
|
|
_ = groupFields
|
|
// groupDescName is the schema descriptor for name field.
|
|
groupDescName := groupFields[0].Descriptor()
|
|
// group.DefaultName holds the default value on creation for the name field.
|
|
group.DefaultName = groupDescName.Default.(string)
|
|
petFields := schema.Pet{}.Fields()
|
|
_ = petFields
|
|
// petDescName is the schema descriptor for name field.
|
|
petDescName := petFields[0].Descriptor()
|
|
// pet.DefaultName holds the default value on creation for the name field.
|
|
pet.DefaultName = petDescName.Default.(string)
|
|
userFields := schema.User{}.Fields()
|
|
_ = userFields
|
|
// userDescName is the schema descriptor for name field.
|
|
userDescName := userFields[0].Descriptor()
|
|
// user.DefaultName holds the default value on creation for the name field.
|
|
user.DefaultName = userDescName.Default.(string)
|
|
}
|