yoyo-project/yoyo

View on GitHub
internal/dbms/dialect/strings.go

Summary

Maintainability
A
0 mins
Test Coverage
package dialect

const (
    // MySQL is for the SQL dialect of the same name
    MySQL = "mysql"
    // PostgreSQL is for the SQL dialect of the same name
    PostgreSQL = "postgresql"
    // SQLite is for the SQL dialect of the same name
    SQLite = "sqlite"
)