mejoras
This commit is contained in:
+2
-2
@@ -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.'),
|
||||
|
||||
Reference in New Issue
Block a user