Changed configuration parameters' names to match sequelize nomemclature

Fixed seed/initial_tasks data which created tasks in a non-sequential order (tested on Postgres)
Added production-like example configuration
This commit is contained in:
DC*
2014-08-08 00:47:38 -03:00
parent d33305986c
commit ebab3b60a8
5 changed files with 29 additions and 14 deletions
+5 -5
View File
@@ -8,10 +8,10 @@
"storage": "db/test.sqlite"
},
"production": {
"username": "root",
"password": null,
"database": "database_production",
"host": "127.0.0.1",
"dialect": "mysql"
"username": "postgres",
"password": "",
"database": "hackflowy",
"host" : "localhost",
"dialect" : "postgres"
}
}