- 000
Describe the feature
run the code below
package main
import (
"gorm.io/driver/sqlite"
"gorm.io/gorm"
)
type Product struct {
id int
code string
price uint
}
func main() {
db, err := gorm.Open(sqlite.Open("test.db"), &gorm.Config{})
if err != nil {
panic("failed to connect databa...