cmc-sales/scripts/report_remaining_corruption.sh
2025-12-10 07:27:36 +11:00

16 lines
456 B
Bash
Executable file

#!/bin/bash
# ============================================================================
# Generate Report of Remaining Corrupted Data
# ============================================================================
DB_USER="root"
DB_PASS="secureRootPassword"
DB_NAME="cmc"
CONTAINER="cmc-db"
docker exec $CONTAINER mariadb \
-u $DB_USER \
-p$DB_PASS \
--default-character-set=utf8mb4 \
$DB_NAME < scripts/report_remaining_corruption.sql