Expected behavior
When I log into ForestAdmin to see the database of my web app, choose a table, click to edit a record and change a field within that record, the change should be saved.
Actual behavior
When I click on save I get the following error (see below) and the change in the record doesn’t get saved.
Context
I only experience this when I’m in the staging or productions environment (web app is hosted on Heroku). In the development environment it works fine.
package.json
{
"name": "ibiza-garden-houses",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node ./server.js"
},
"dependencies": {
"body-parser": "1.19.0",
"chalk": "~1.1.3",
"cookie-parser": "1.4.4",
"cors": "2.8.5",
"debug": "~4.0.1",
"dotenv": "~6.1.0",
"express": "~4.16.3",
"express-jwt": "^5.3.1",
"forest-express": "^7.4.0",
"forest-express-sequelize": "^6.7.5",
"morgan": "1.9.1",
"pg": "~8.2.2",
"require-all": "^3.0.0",
"sequelize": "~5.15.1"
}
}