levibostian / ExpressjsBlanky

Blank Express.js project to get up and running FAST.
MIT License
7 stars 0 forks source link

Setup model queries to all be run under a given transaction. #23

Closed levibostian closed 3 years ago

levibostian commented 4 years ago

At this time, I am manually running DB transactions "where they are needed" (aka: more complex controllers). However, this can cause human error when forgetting to run under transactions. Transactions are good and should be the defeault behavior anyway probably for all controllers.

levibostian commented 3 years ago

Done