node-database-cleaner
node-database-cleaner copied to clipboard
The simplest way to clean your database after tests
A few problems came up for us: 1. When `database-cleaner` lists out the tables to be deleted, the tables are not ordered by foreign key constraints. So we have `child`...
Currently in MySQL if lower_case_table_names is set to 2 then when your database name has an uppercase character database-cleaner will fail because the `show tables` query returns using a column...
I have a very particular case, i'm getting into a legacy database, and i don't touch most of those tables, there's more than 100 tables but only use 2 or...