sequelize-typescript-mysql-migration
Version:
Migration tool for sequelize-typescript with MySQL
24 lines (23 loc) • 544 B
JSON
{
"development": {
"username": "postgres",
"password": "postgres",
"database": "database_dev",
"host": "127.0.0.1",
"dialect": "postgres"
},
"test": {
"username": "root",
"password": null,
"database": "database_test",
"host": "127.0.0.1",
"dialect": "postgres"
},
"production": {
"username": "root",
"password": null,
"database": "database_production",
"host": "127.0.0.1",
"dialect": "postgres"
}
}