All Questions
Tagged with node-postgres sequelize.js
3 questions
0
votes
0answers
169 views
Sequelize migrate failing due to dialect object Object not supported error
Background
I am creating a boilerplate express application. I have configured a database connection using pg and sequelize. When I add the cli and try to run sequlize db:migrate I get this error,
...
2
votes
3answers
2k views
node-postgres, Connection terminated unexpectedly
I'm trying to connect to a remote database using node-postgres.
I can connect using the psql client, but I get the error Connection terminated unexpectedly while trying to run this (with same ...
2
votes
1answer
2k views
Retrieving multiple rows with Sequelizejs
I am beginning to learn SequelizeJs however I encounter a small issue:
I have a model which is defined as such:
var ex_table= sequelize.define("ex_table", {
concept1: Sequelize.STRING(5),
...