feat(medicos): seed 444 médicos + columnas telefonos/email en tabla y modal

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Lizandro Guarnizo
2026-07-03 00:51:57 -05:00
co-authored by Claude Sonnet 4.6
parent 48f9e32c22
commit 3b378c0d75
6 changed files with 480 additions and 9 deletions
+6 -1
View File
@@ -3,7 +3,12 @@ CREATE TABLE IF NOT EXISTS medicos (
codigo VARCHAR(20) NOT NULL UNIQUE,
nombres VARCHAR(100) NOT NULL,
apellidos VARCHAR(100) NOT NULL,
cod_especialidad VARCHAR(50) DEFAULT NULL,
direccion VARCHAR(200) DEFAULT NULL,
telefonos VARCHAR(50) DEFAULT NULL,
email VARCHAR(100) DEFAULT NULL,
beeper VARCHAR(50) DEFAULT NULL,
cod_especialidad VARCHAR(10) DEFAULT NULL,
cod_ciudad VARCHAR(10) DEFAULT NULL,
docidmedico VARCHAR(30) DEFAULT NULL,
activo TINYINT(1) NOT NULL DEFAULT 1,
creado_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,