Files
ent/entc/integration/migrate/entv2/schema/conversion.go
2022-01-20 17:20:50 +02:00

52 lines
1.4 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.
package schema
import (
"entgo.io/ent"
"entgo.io/ent/dialect/entsql"
"entgo.io/ent/schema/field"
)
// Conversion holds the schema definition for the Conversion entity.
type Conversion struct {
ent.Schema
}
// Fields of the Conversion.
func (Conversion) Fields() []ent.Field {
return []ent.Field{
field.String("name").
Optional(),
// Convert integer fields to string
// Postgres uses the same type for int8 and int16
// Postgres loses unsigned so we have assume value is signed
field.String("int8_to_string").
Optional().
Annotations(entsql.Annotation{Size: 6}),
field.String("uint8_to_string").
Optional().
Annotations(entsql.Annotation{Size: 6}),
field.String("int16_to_string").
Optional().
Annotations(entsql.Annotation{Size: 6}),
field.String("uint16_to_string").
Optional().
Annotations(entsql.Annotation{Size: 6}),
field.String("int32_to_string").
Optional().
Annotations(entsql.Annotation{Size: 12}),
field.String("uint32_to_string").
Optional().
Annotations(entsql.Annotation{Size: 12}),
field.String("int64_to_string").
Optional().
Annotations(entsql.Annotation{Size: 21}),
field.String("uint64_to_string").
Optional().
Annotations(entsql.Annotation{Size: 21}),
}
}