diff --git a/types/sequelize/index.d.ts b/types/sequelize/index.d.ts index 9c3ca8474e..8c6622c1ab 100644 --- a/types/sequelize/index.d.ts +++ b/types/sequelize/index.d.ts @@ -5233,8 +5233,17 @@ declare namespace sequelize { * `this.constructor.prototype.find.apply(this, arguments)` */ classMethods?: Object; - + + /** + * Change the database schema. PG only feature, but also works with other dialects. + */ schema?: string; + + + /** + * Change the database schema delimiter. Defaults to "." on PG but for other dialects can be also changed to "_". + */ + schemaDelimiter?: string; /** * You can also change the database engine, e.g. to MyISAM. InnoDB is the default.