Merge pull request #8387 from konrad-garus/sequelize-upsert-options

Sequelize: Add missing UpsertOptions
This commit is contained in:
Masahiro Wakame
2016-03-10 23:16:38 +09:00
+14
View File
@@ -3325,6 +3325,20 @@ declare module "sequelize" {
*/
logging? : boolean | Function;
/**
* Transaction to run query under
*/
transaction? : Transaction;
/**
* An optional parameter to specify the schema search_path (Postgres only)
*/
searchPath? : string;
/**
* Print query execution time in milliseconds when logging SQL.
*/
benchmark? : boolean;
}
/**