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.
  1. for a DO to be deleted, I assume
    storage.deleteAll()
    must be called and no SQLite tables can exist?
  2. I create my SQLite tables in the constructor, but if a DO is deleted with
    storage.deleteAll()
    , 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?
Was this page helpful?