d28f005552
Fix limit for databases other than sqlite go mod tidy && go mod vendor Remove unneeded break statements Make everything work with the new xorm version Fix xorm logging Fix lint Fix redis init Fix using id field Fix database init for testing Change default database log level Add xorm logger Use const for postgres go mod tidy Merge branch 'master' into update/xorm # Conflicts: # go.mod # go.sum # vendor/modules.txt go mod vendor Fix loading fixtures for postgres Go mod vendor1 Update xorm to version 1 Co-authored-by: kolaente <k@knt.li> Reviewed-on: https://kolaente.dev/vikunja/api/pulls/323
19 lines
664 B
Modula-2
19 lines
664 B
Modula-2
module src.techknowlogick.com/xormigrate
|
|
|
|
go 1.14
|
|
|
|
require (
|
|
github.com/denisenkom/go-mssqldb v0.0.0-20200206145737-bbfc9a55622e
|
|
github.com/go-sql-driver/mysql v1.5.0
|
|
github.com/golang/protobuf v1.3.1 // indirect
|
|
github.com/golang/snappy v0.0.1 // indirect
|
|
github.com/joho/godotenv v1.3.0
|
|
github.com/lib/pq v1.3.0
|
|
github.com/mattn/go-sqlite3 v2.0.3+incompatible
|
|
github.com/stretchr/testify v1.5.1
|
|
golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5 // indirect
|
|
golang.org/x/net v0.0.0-20190603091049-60506f45cf65 // indirect
|
|
golang.org/x/sys v0.0.0-20190606165138-5da285871e9c // indirect
|
|
golang.org/x/text v0.3.2 // indirect
|
|
xorm.io/xorm v1.0.1
|
|
)
|