I have 2 questions, if you could help. 1. for a DO to be deleted, I assume `storage.deleteAll()` mus
I have 2 questions, if you could help.
- for a DO to be deleted, I assume
must be called and no SQLite tables can exist?storage.deleteAll() - I create my SQLite tables in the constructor, but if a DO is deleted with
, and a new call comes in after that, it errors because the tables don't exist, and I don't know whether to re-create them or not. Is there a solution to this?storage.deleteAll()

