INSERT INTO "Cartridges" ("id","code","quantity","active","createdAt","updatedAt")
VALUES
(DEFAULT,DEFAULT,500,true,'2019-07-19 11:52:52.423 +00:00','2019-07-19 11:52:52.423 +00:00'),
(DEFAULT,DEFAULT,500,true,'2019-07-19 11:52:52.423 +00:00','2019-07-19 11:52:52.423 +00:00'),
(DEFAULT,DEFAULT,500,true,'2019-07-19 11:52:52.423 +00:00','2019-07-19 11:52:52.423 +00:00');
const response = await models.Cartridge.bulkCreate([
{ quantity, active, code: ??? },
{ quantity, active, code: ??? },
{ quantity, active, code: ??? }
], { returning: true });