Configuration settings for creating a SequelizeManager instance.
const config: SequelizeManagerSettings = { options: { dialect: 'postgres', host: 'localhost', port: 5432, database: 'mydb', username: 'user', password: 'password', pool: { max: 5, min: 0, acquire: 30000, idle: 10000 } }, models: [userModelSettings, postModelSettings]}; Copy
const config: SequelizeManagerSettings = { options: { dialect: 'postgres', host: 'localhost', port: 5432, database: 'mydb', username: 'user', password: 'password', pool: { max: 5, min: 0, acquire: 30000, idle: 10000 } }, models: [userModelSettings, postModelSettings]};
Optional
Array of model definitions to register with the Sequelize instance
Sequelize connection and configuration options
Configuration settings for creating a SequelizeManager instance.
Example