Drops a table if it exists.
Future<void> drop(String name) async { await _db.query('DROP TABLE IF EXISTS "${_sanitize(name)}" CASCADE'); }