반응형
golang gorm MySQL TIME data type
import "gorm.io/gorm/schema"
type CustomTime struct {
time.Time
}
func (CustomTime) GormDataType() string {
return "time"
}
func (CustomTime) GormDBDataType(db *gorm.DB, field *schema.Field) string {
return "time"
}
// 사용 방법
type TypeTest struct {
Col6 CustomTime
}
반응형
'Dev > Go' 카테고리의 다른 글
go - package (0) | 2023.11.24 |
---|---|
go module upgrade (0) | 2023.11.13 |
golang fiber + otel + recover middleware 호출 순서 (0) | 2023.11.10 |
golang Dockerfile sample (0) | 2023.09.27 |
Visual studio code (vscode) Go (golang) 개발 환경 설정 (0) | 2023.09.10 |