removed catch/throw

This commit is contained in:
bill bittner 2018-07-02 14:53:50 -07:00
parent bf30c9f8a0
commit fda50b90bd

View file

@ -68,9 +68,6 @@ module.exports = (sequelize, { STRING }) => {
.then(() => {
// fill the table
return this.bulkCreate(blockedList);
})
.catch(error => {
throw error;
});
};