package initialize import ( "os" "autocode/global" "autocode/model/autocode" "go.uber.org/zap" "gorm.io/gorm" ) // Gorm 初始化数据库并产生数据库全局变量 // Author SliverHorn func Gorm() *gorm.DB { switch global.GVA_CONFIG.System.DbType { case "mysql": return GormMysql() case "pgsql": return GormPgSql() default: return GormMysql() } } // RegisterTables 注册数据库表专用 // Author SliverHorn func RegisterTables(db *gorm.DB) { err := db.AutoMigrate( // 自动化模块表 // Code generated by github.com/flipped-aurora/yibu/server Begin; DO NOT EDIT. autocode.AutoCodeExample{}, // Code generated by github.com/flipped-aurora/yibu/server End; DO NOT EDIT. ) if err != nil { global.GVA_LOG.Error("register table failed", zap.Error(err)) os.Exit(0) } global.GVA_LOG.Info("register table success") }