refactor: unify db dialect definition in dbdialects package

This commit is contained in:
2026-04-26 01:33:34 -05:00
parent 7bde77dcc5
commit fbe17b3842
3 changed files with 13 additions and 4 deletions

View File

@@ -0,0 +1,7 @@
package dbdialects
const (
SqlServer string = "sqlserver"
Postgres string = "postgres"
Null string = "null"
)