mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
28 lines
946 B
Go
28 lines
946 B
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 ent, DO NOT EDIT.
|
|
|
|
package ent
|
|
|
|
import (
|
|
"entgo.io/ent/examples/version/ent/schema"
|
|
"entgo.io/ent/examples/version/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() {
|
|
userMixin := schema.User{}.Mixin()
|
|
userMixinFields0 := userMixin[0].Fields()
|
|
_ = userMixinFields0
|
|
userFields := schema.User{}.Fields()
|
|
_ = userFields
|
|
// userDescVersion is the schema descriptor for version field.
|
|
userDescVersion := userMixinFields0[0].Descriptor()
|
|
// user.DefaultVersion holds the default value on creation for the version field.
|
|
user.DefaultVersion = userDescVersion.Default.(func() int64)
|
|
}
|