fix debug: quitar creado_at del test INSERT

This commit is contained in:
Lizandro Guarnizo
2026-07-03 10:30:39 -05:00
parent f18104dd5d
commit 61c8c0b9ca
+2 -2
View File
@@ -146,8 +146,8 @@ if ($hoyTurnos) {
$testToken = 'DEBUG-TEST-' . time();
$ins = $pdo->prepare(
"INSERT IGNORE INTO turnero_consentimientos
(turno_id, formulario_id, token, estado, creado_at)
VALUES (?, ?, ?, 'pendiente', NOW())"
(turno_id, formulario_id, token, estado)
VALUES (?, ?, ?, 'pendiente')"
);
$ins->execute([$turnoTest['id'], $formTest['id'], $testToken]);
if ($ins->rowCount()) {