dropColumn method
Helper to drop column (skips if not exists)
Implementation
Future<void> dropColumn({
required String table,
required String column,
}) async {
final exists = await _columnExists(table, column);
if (!exists) return;
final sql = 'ALTER TABLE $table DROP COLUMN IF EXISTS $column;';
await connection.execute(sql);
}