hey SqlDelight question, we now have multiple tabl...
# squarelibraries
b
hey SqlDelight question, we now have multiple tables within a single database. To test, we are using instrumented espresso tests. I want to ensure a clean database at the start of each test run - previously i was dropping the only table in the database and then recreating the schema: but now with multiple tables i’d have to drop each table in the schema. Is there a way to drop all tables, or to drop database? Just seeing if there’s something cleaner than iterating through like so
for (each table in database) { drop table }