What is the command to drop all tables in SQLite?
Similarly I\'d like to drop all indexes.
I'd like to add to other answers involving dropping tables and not deleting the file, that you can also execute delete from sqlite_sequence to reset auto-increment sequences.
delete from sqlite_sequence