sqlite
sqlite copied to clipboard
The pure-Go SQLite driver for GORM
--- Test v1.9.0 is normal  Test v1.10.0 only create one pk: id  Below is the test code: ```go package main import ( "testing" "github.com/glebarez/sqlite" "gorm.io/gorm" ) type MixConfig...
Enable to use glebarez/sqlite with libSQL by allowing custom connection. For more information: https://github.com/go-gorm/sqlite/pull/185
### When using `db.Create()` to create a column containing the time, it will contain the time zone ```golang type Example struct { Id int `gorm:"primaryKey;autoIncrement;"` CreatedAt time.Time UpdatedAt time.Time Name...