Files
whatsapp/migrations/20260626_activar_numero_turnero.php
Lizandro GuarnizoandClaude Sonnet 4.6 bb6ee12e0a fix: restaurar migraciones del turnero perdidas por force push
- 20260626_activar_numero_turnero.php
- 20260626_turnero_canal_conversations.sql

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-07-03 00:43:21 -05:00

17 lines
459 B
PHP

<?php
/**
* Migración: Activar número WhatsApp del Turnero
* Phone Number ID: 1154129601114656
* Ya registrado en Meta — solo queda guardarlo en system_config.
*/
require_once __DIR__ . '/../config/config.php';
try {
saveConfigToDB('whatsapp_phone_number_id_turnero', '1154129601114656');
echo "OK: whatsapp_phone_number_id_turnero = 1154129601114656\n";
} catch (Exception $e) {
echo "ERROR: " . $e->getMessage() . "\n";
exit(1);
}