Dropping Sequelize

To connect your new agent to a SQL database, you have two options:

Keep Sequelize
Connect directly to the database

How

Use the @forestadmin/datasource-sequelize package

Use the @forestadmin/datasource-sql package

For whom

Customers that have in-app installations and use the Sequelize ORM in their code

Others that only used Sequelize because it was a requirement in the legacy agents

Benefits

Migration is less error-prone

You no longer need to maintain Sequelize models

Cons

You may need to rename your tables and fields to match the old install

If you wish to migrate to the new @forestadmin/datasource-sql connectors, you will need to:

Change the dependency in your agent:

$ npm remove @forestadmin/datasource-sequelize
$ npm install @forestadmin/datasource-sql

Then you can delete your Sequelize models and change the index file.

const { createAgent } = require('@forestadmin/agent');
const { createSqlDataSource } = require('@forestadmin/datasource-sql');

// Create agent and import collections from SQL database
const agent = createAgent(options).addDataSource(
  createSqlDataSource('postgres://user:pass@localhost:5432/myDatabase'),
);

Then, depending on your database structure, you may need to rename both your tables and columns: the new agent will use the same names as your database, but depending on your previous Sequelize configuration, Sequelize may have renamed all tables and fields to camelCase.

Renaming tables and fields can be done by following this example:

Last updated

Was this helpful?