Versions in this module Expand all Collapse all v0 v0.1.0 Aug 5, 2026 Changes in this version + var ErrMigrationsUnordered = errors.New("store: migrations are not in ascending version order") + type DB struct + func Open(ctx context.Context, path string) (*DB, error) + func OpenWith(ctx context.Context, path string, ms []Migration) (*DB, error) + func (db *DB) Close() error + func (db *DB) Conn() *sql.DB + func (db *DB) Version(ctx context.Context) (int, error) + type Migration struct + SQL string + Version int