Files
sf-nfc-server/deployment/database/migrations/1.1.0_LogOperations.sql

15 lines
316 B
MySQL
Raw Normal View History

2026-03-18 17:14:54 +01:00
/**
* Loguear las operaciones de entrada-salida de la api para trazabilidad
* de errores cliente-servidor
*/
CREATE TABLE log_operations (
id BIGINT GENERATED ALWAYS AS IDENTITY,
date TIMESTAMPTZ default now(),
origin TEXT NOT NULL,
endpoint TEXT,
data JSONB
)