/** Drops underlying database table using DAOs. */
 public static void dropAllTables(SQLiteDatabase db, boolean ifExists) {
   EmployeeDao.dropTable(db, ifExists);
   AdminDao.dropTable(db, ifExists);
 }