DB Transaction doesn’t rollback #4417
-
Hi I used MySQL, and I want using DB Transaction with lucid models, but the rollback function doesn't work properly, this my code : `const trx = await db.transaction() const user = new User() await trx.rollback()` |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
what do you mean by?
what is your expectation? |
Beta Was this translation helpful? Give feedback.
First, you are missing
await
in front ofuser.save()
method call.