# TÂCHE DEPLOY — Exécuter SQL + git push ## Ce que tu dois faire ### 1. Exécuter le script SQL sur la DB locale ```bash cd C:/Projects/metallkart-erp cat scripts/fix-supplier-tags.sql ``` Puis exécute-le sur la DB locale : ```bash PGPASSWORD=MK_PG_local_2026! psql -h localhost -U metallkart -d erp_local -f scripts/fix-supplier-tags.sql ``` Si psql n'est pas dans le PATH, utilise le chemin complet : ```bash "D:/PostgreSQL/16/bin/psql.exe" -h localhost -U metallkart -d erp_local -f scripts/fix-supplier-tags.sql ``` ### 2. Git push ```bash cd C:/Projects/metallkart-erp git status git log --oneline -10 git push origin master ``` ### 3. Affiche le résultat - Résultat du SQL (combien de tags insérés/modifiés) - Résultat du git push (succès/échec)