Files
ent/entc/integration/migrate/versioned/schema/group.go
Jannik Clausen 5b67bdab4f dialect/sql/schema: atlas engine is now default (#2698)
* atlas engine is default, enabled diff by replay

* Apply suggestions from code review

* docs

* apply CR
2022-07-05 12:29:15 +02:00

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",
},
}
}