Модель Adonis Использование транзакции

await created_user.useTransaction(trx).save();
// or
await User.create({
	name: "Joe",
	email: "joe@joe.com",
}, { client: trx });
GutoTrosla