Proyecto Profesional PHP / MVC / 3 Capas
La tabla Auditoria es la encargada de registrar todos los cambios ocurridos en cada regisro, ya sea creado, modificado o eliminado.
Guardaremos una copia antes de la modificación y otra después.
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `adm_auditoria` -- CREATE TABLE `adm_auditoria` ( `auditoria_id` bigint(20) UNSIGNED NOT NULL, `auditoria_entidad_id` smallint(5) UNSIGNED NOT NULL, `auditoria_registro_id` bigint(20) UNSIGNED NOT NULL, `auditoria_usuario_id` int(10) UNSIGNED NOT NULL, `auditoria_fecha_gmt` datetime NOT NULL, `auditoria_accion` char(3) COLLATE utf8_unicode_ci NOT NULL, `auditoria_grupo` bigint(20) NOT NULL, `auditoria_antes` text COLLATE utf8_unicode_ci NOT NULL, `auditoria_despues` text COLLATE utf8_unicode_ci ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Índices para tablas volcadas -- -- -- Indices de la tabla `adm_auditoria` -- ALTER TABLE `adm_auditoria` ADD PRIMARY KEY (`auditoria_id`), ADD KEY `idx_auditoria_entidad_id` (`auditoria_entidad_id`), ADD KEY `idx_auditoria_usuario_id` (`auditoria_usuario_id`), ADD KEY `idx_auditoria_grupo` (`auditoria_id`); COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;