Merge pull request #17719 from natesilva/sequelize-add-timestamps

sequelize: support `timestamps` option on `AssociationOptionsBelongsToMany`
This commit is contained in:
Ron Buckton
2017-07-03 13:48:33 -07:00
committed by GitHub
+5
View File
@@ -1353,6 +1353,11 @@ declare namespace sequelize {
*/
otherKey?: string | AssociationForeignKeyOptions;
/**
* Should the join model have timestamps
*/
timestamps?: boolean;
}
/**