Files
go-migrate-db/internal/app/db-wrapper/db_dialects/main.go
Kylesoda 70ce71f59b refactor: replace per-dialect extractors with generic extractor
Collapse the mssql- and postgres-specific extractors into a single generic implementation driven by the DB dialect interface.
2026-04-28 18:00:00 -05:00

8 lines
121 B
Go

package db_dialects
const (
SqlServer string = "sqlserver"
Postgres string = "postgres"
Null string = "null"
)