This commit is contained in:
lizandrogd
2026-01-21 08:28:54 -05:00
parent 7d6c3b4fb4
commit 45a11032f5
59 changed files with 315 additions and 315 deletions
+2 -2
View File
@@ -69,7 +69,7 @@ CREATE TABLE menu_options (
);
-- Tabla de respuestas automáticas
CREATE TABLE auto_responses (
CREATE TABLE autoresponses (
id INT AUTO_INCREMENT PRIMARY KEY,
trigger_type ENUM('keyword', 'menu_selection', 'welcome') NOT NULL,
trigger_value VARCHAR(200),
@@ -167,7 +167,7 @@ INSERT INTO menu_options (menu_id, option_number, text, action_type, action_valu
(@support_menu_id, 0, '🔙 Volver al menú principal', 'menu', 'main_menu');
-- Insertar respuestas automáticas
INSERT INTO auto_responses (trigger_type, trigger_value, response_text) VALUES
INSERT INTO autoresponses (trigger_type, trigger_value, response_text) VALUES
('keyword', 'menu', 'Aquí tienes nuestro menú principal:'),
('keyword', 'hola', '¡Hola! 👋 Escribe *menu* para ver nuestras opciones.'),
('keyword', 'ayuda', 'Estoy aquí para ayudarte. Escribe *menu* para ver las opciones disponibles.'),