Versions in this module Expand all Collapse all v2 v2.0.1 Feb 13, 2026 Changes in this version + func ConnectionString(u *url.URL) string + func NewDriver(config dbmate.DriverConfig) dbmate.Driver + type Driver struct + func (drv *Driver) CreateDatabase() error + func (drv *Driver) CreateMigrationsTable(db *sql.DB) error + func (drv *Driver) DatabaseExists() (bool, error) + func (drv *Driver) DeleteMigration(db dbutil.Transaction, version string) error + func (drv *Driver) DropDatabase() error + func (drv *Driver) DumpSchema(db *sql.DB) ([]byte, error) + func (drv *Driver) InsertMigration(db dbutil.Transaction, version string) error + func (drv *Driver) MigrationsTableExists(db *sql.DB) (bool, error) + func (drv *Driver) Open() (*sql.DB, error) + func (drv *Driver) Ping() error + func (drv *Driver) QueryError(query string, err error) error + func (drv *Driver) SelectMigrations(db *sql.DB, limit int) (map[string]bool, error)