mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
* atlas engine is default, enabled diff by replay * Apply suggestions from code review * docs * apply CR
36 lines
756 B
Go
36 lines
756 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/field"
|
|
)
|
|
|
|
// Group holds the schema definition for the Group entity.
|
|
type Group struct {
|
|
ent.Schema
|
|
}
|
|
|
|
// Fields of the Group.
|
|
func (Group) Fields() []ent.Field {
|
|
return []ent.Field{
|
|
field.String("name"),
|
|
}
|
|
}
|
|
|
|
// Annotations of the Group.
|
|
func (Group) Annotations() []schema.Annotation {
|
|
return []schema.Annotation{
|
|
entsql.Annotation{
|
|
Table: "versioned_groups",
|
|
Charset: "ascii",
|
|
Collation: "ascii_general_ci",
|
|
},
|
|
}
|
|
}
|