This is happening with every table in our DB when we migrated to v7.
module.exports = async function (app) {
const liana = await Liana.init({
configDir: path.join(__dirname, '../forest'),
envSecret: process.env.FOREST_ENV_SECRET,
authSecret: process.env.FOREST_AUTH_SECRET,
objectMapping: sequelize.Sequelize, // Sequelize was already exported in v6
connections: { default: sequelize },
integrations: {
intercom: {
accessToken: process.env.INTERCOM_ACCESS_TOKEN,
intercom: intercomClient,
mapping: ['User.email']
}
}
});
app.use(liana);
console.log(chalk.cyan('Your admin panel is available here: https://app.forestadmin.com/projects'));
};
Expected behavior
For it to not use the old operators.
Actual behavior
What is the current behavior?
Failure Logs
Context
Please provide any relevant information about your setup.
- Package Version: ^7.2.2
- Express Version: ^4.17.1
- Sequelize Version: ^5.22.4
- Database Dialect: PG
- Database Version: 11
- Project Name: Rupie