Model Adonis Użyj transakcji
await created_user.useTransaction(trx).save();
// or
await User.create({
name: "Joe",
email: "[email protected]",
}, { client: trx });
GutoTrosla