mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
46 lines
903 B
Go
46 lines
903 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.
|
|
|
|
package schema
|
|
|
|
import (
|
|
"entgo.io/ent"
|
|
"entgo.io/ent/dialect/entsql"
|
|
"entgo.io/ent/schema"
|
|
"entgo.io/ent/schema/edge"
|
|
"entgo.io/ent/schema/field"
|
|
)
|
|
|
|
// Pet holds the schema definition for the Pet entity.
|
|
type Pet struct {
|
|
ent.Schema
|
|
}
|
|
|
|
// Fields of the Pet.
|
|
func (Pet) Fields() []ent.Field {
|
|
return []ent.Field{
|
|
field.String("name").
|
|
Default("unknown"),
|
|
field.Int("owner_id").
|
|
Optional(),
|
|
}
|
|
}
|
|
|
|
// Edges of the Pet.
|
|
func (Pet) Edges() []ent.Edge {
|
|
return []ent.Edge{
|
|
edge.From("owner", User.Type).
|
|
Ref("pets").
|
|
Field("owner_id").
|
|
Unique(),
|
|
}
|
|
}
|
|
|
|
// Annotations of the Pet.
|
|
func (Pet) Annotations() []schema.Annotation {
|
|
return []schema.Annotation{
|
|
entsql.Schema("db2"),
|
|
}
|
|
}
|