1 Star 0 Fork 0

bugsmo/go-utils

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
switch_status.go 677 Bytes
一键复制 编辑 原始数据 按行查看 历史
bugsmo 提交于 2024-06-01 22:06 . v1.0.0
package mixin
import (
"entgo.io/ent"
"entgo.io/ent/schema/field"
"entgo.io/ent/schema/mixin"
)
type SwitchStatus struct {
mixin.Schema
}
func (SwitchStatus) Fields() []ent.Field {
return []ent.Field{
/**
在PostgreSQL下,还需要为此创建一个Type,否则无法使用。
DROP TYPE IF EXISTS switch_status CASCADE;
CREATE TYPE switch_status AS ENUM (
'OFF',
'ON'
);
*/
field.Enum("status").
Comment("状态").
Optional().
Nillable().
//SchemaType(map[string]string{
// dialect.MySQL: "switch_status",
// dialect.Postgres: "switch_status",
//}).
Default("ON").
Values(
"OFF",
"ON",
),
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ssxlt/go-utils.git
git@gitee.com:ssxlt/go-utils.git
ssxlt
go-utils
go-utils
entgo/v1.0.1

搜索帮助