Model Adonis menggunakan transaksi

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