Create new sequelize

Here is an example of how to create a new Sequelize instance:

const Sequelize = require('sequelize');

// Create a new Sequelize instance
const sequelize = new Sequelize('database', 'username', 'password', {
  host: 'localhost',
  dialect: 'mysql' // or 'postgres', 'sqlite', etc.
});

In this example, we're creating a new Sequelize instance with the following options:

You can also specify additional options, such as:

For example:

const sequelize = new Sequelize('database', 'username', 'password', {
  host: 'localhost',
  dialect: 'mysql',
  port: 3307,
  logging: true,
  timezone: 'America/New_York'
});

Once you've created the Sequelize instance, you can use it to create models, query the database, and perform other database operations.