update to add tests

This commit is contained in:
2026-02-20 20:54:33 -05:00
parent aceea44c90
commit af85de2226
5 changed files with 450 additions and 2 deletions

View File

@@ -1,6 +1,12 @@
package postgres
import "fmt"
import (
"fmt"
"git.nonahob.net/jacob/golibs/datastores/sql/migrate"
)
var _ migrate.Dialect = Dialect{}
// Dialect implements migrate.Dialect for PostgreSQL.
type Dialect struct{}