Sequelize: Add missing UpsertOptions

This commit is contained in:
konrad-garus
2016-03-04 15:23:24 +01:00
parent 9f0f926a12
commit b91c1b01eb

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;
}
/**