43 lines
684 B
JSON
43 lines
684 B
JSON
{
|
|
"mysql2": {
|
|
"driver": "mysql",
|
|
"connection": {
|
|
"host": "mysql2",
|
|
"user": "test",
|
|
"password": "test",
|
|
"database": "test"
|
|
}
|
|
},
|
|
"pg": {
|
|
"driver": "pg",
|
|
"connection": "postgres://test:test@posgres/test"
|
|
},
|
|
"pg-object": {
|
|
"driver": "pg",
|
|
"connection": {
|
|
"database": "test"
|
|
}
|
|
},
|
|
"pg-native": {
|
|
"driver": "pg",
|
|
"native": true,
|
|
"connection": "postgres://test:test@posgres/test"
|
|
},
|
|
"pg-object-native": {
|
|
"driver": "pg",
|
|
"native": true,
|
|
"connection": {
|
|
"database": "test"
|
|
}
|
|
},
|
|
"dblite": {
|
|
"adapter": "dblite",
|
|
"driver": "sqlite",
|
|
"connection": ":memory:"
|
|
},
|
|
"sqlite3": {
|
|
"driver": "sqlite",
|
|
"connection": ":memory:"
|
|
}
|
|
}
|