String generateDropTableSql(String tableName, {bool ifExists = false}) { String dropClause = ifExists ? 'DROP TABLE IF EXISTS' : 'DROP TABLE'; return '$dropClause `$tableName`'; }