more fiddling

This commit is contained in:
tsmethurst 2021-08-17 19:03:41 +02:00
commit a3322b2bf3
65 changed files with 712 additions and 508 deletions

View file

@ -185,6 +185,11 @@ func (b *basicDB) DropTable(i interface{}) db.DBError {
})
}
func (b *basicDB) RegisterTable(i interface{}) db.DBError {
orm.RegisterTable(i)
return nil
}
func (b *basicDB) IsHealthy(ctx context.Context) db.DBError {
return b.conn.Ping(ctx)
}