Refactor: Centralize Prisma schema and restrict DB access

This commit refactors the project to use a shared Prisma schema and restricts direct database access to the API service.

Key changes:

- Created a new shared package `core/prisma` containing the Prisma schema, generated client, and types.
- Configured the monorepo to use NPM workspaces, including `core/prisma` and all services.
- Updated all services (`api`, `ui`, `mcp`, `agent`, and the background processing service) to depend on `@empresa/prisma-schema`.
- The API service now imports `PrismaClient` from `@empresa/prisma-schema/client`.
- Other services import only types from `@empresa/prisma-schema`.
- Removed redundant Prisma configurations from `api` and the background processing service.
- Updated the background processing service's `sync-empleados.js` to fetch data via an API call instead of direct database access.
- Updated TypeScript configurations (`tsconfig.base.json` and service-specific ones) to support the new structure and path aliases.
- Updated `README.md` to reflect the new architecture and added convenience scripts for Prisma operations.

This change promotes a single source of truth for data models, reduces code duplication, and improves the overall architecture by centralizing database operations within the API service.
This commit is contained in:
google-labs-jules[bot]
2025-05-30 23:40:00 +00:00
parent 4f1ec58a99
commit 242dc66983
26 changed files with 381 additions and 243 deletions

View File

@@ -1,84 +0,0 @@
-- CreateTable
CREATE TABLE "Cliente" (
"id" BIGSERIAL NOT NULL,
"created_at" TIMESTAMP(3) NOT NULL DEFAULT (now() AT TIME ZONE 'utc'),
"updated_at" TIMESTAMP(3) NOT NULL DEFAULT (now() AT TIME ZONE 'utc'),
"name" TEXT NOT NULL,
"cedula" BIGINT NOT NULL,
"ubicacion" TEXT NOT NULL DEFAULT '.',
"grupo_estudio" TEXT,
"empleado" BOOLEAN NOT NULL DEFAULT false,
"avatar_url" TEXT,
"telefono" TEXT,
"idciat" TEXT,
CONSTRAINT "Cliente_pkey" PRIMARY KEY ("id")
);
-- CreateTable
CREATE TABLE "Planilla" (
"id" BIGSERIAL NOT NULL,
"created_at" TIMESTAMP(3) NOT NULL DEFAULT (now() AT TIME ZONE 'utc'),
"updated_at" TIMESTAMP(3) NOT NULL DEFAULT (now() AT TIME ZONE 'utc'),
"fecha_desde" TIMESTAMP(3) NOT NULL,
"fecha_hasta" TIMESTAMP(3) NOT NULL,
"titulo" TEXT NOT NULL,
"total" DECIMAL(65,30),
"estado" TEXT NOT NULL DEFAULT 'pagado',
"fecha_anulado" TIMESTAMP(3),
"empleado_id" BIGINT NOT NULL,
"creador_id" UUID,
"anulador_id" UUID,
CONSTRAINT "Planilla_pkey" PRIMARY KEY ("id")
);
-- CreateTable
CREATE TABLE "TareaRealizada" (
"id" BIGSERIAL NOT NULL,
"empleado_id" BIGINT NOT NULL,
"planilla_id" BIGINT,
"titulo" TEXT NOT NULL,
"precio" DOUBLE PRECISION,
"estado" TEXT NOT NULL DEFAULT 'pendiente',
"observacion" TEXT,
"fecha" TIMESTAMP(3) NOT NULL,
"created_at" TIMESTAMP(3) NOT NULL DEFAULT (now() AT TIME ZONE 'utc'),
"tipo" TEXT NOT NULL DEFAULT '',
"fecha_anulado" TIMESTAMP(3),
"creador_id" UUID NOT NULL,
"anulador_id" UUID,
CONSTRAINT "TareaRealizada_pkey" PRIMARY KEY ("id")
);
-- CreateTable
CREATE TABLE "Asistencia" (
"id" BIGSERIAL NOT NULL,
"created_at" TIMESTAMP(3) NOT NULL DEFAULT (now() AT TIME ZONE 'utc'),
"updated_at" TIMESTAMP(3) NOT NULL DEFAULT (now() AT TIME ZONE 'utc'),
"entrada" TIMESTAMP(3) DEFAULT (now() AT TIME ZONE 'utc'),
"salida" TIMESTAMP(3),
"historial" JSONB,
"observacion" TEXT,
"estado" TEXT DEFAULT 'pendiente',
"fecha_anulado" TIMESTAMP(3),
"empleado_id" BIGINT NOT NULL,
"creador_id" UUID NOT NULL,
"modificado_id" UUID,
"anulador_id" UUID,
CONSTRAINT "Asistencia_pkey" PRIMARY KEY ("id")
);
-- CreateIndex
CREATE UNIQUE INDEX "Cliente_cedula_key" ON "Cliente"("cedula");
-- AddForeignKey
ALTER TABLE "Planilla" ADD CONSTRAINT "Planilla_empleado_id_fkey" FOREIGN KEY ("empleado_id") REFERENCES "Cliente"("id") ON DELETE RESTRICT ON UPDATE CASCADE;
-- AddForeignKey
ALTER TABLE "TareaRealizada" ADD CONSTRAINT "TareaRealizada_empleado_id_fkey" FOREIGN KEY ("empleado_id") REFERENCES "Cliente"("id") ON DELETE RESTRICT ON UPDATE CASCADE;
-- AddForeignKey
ALTER TABLE "Asistencia" ADD CONSTRAINT "Asistencia_empleado_id_fkey" FOREIGN KEY ("empleado_id") REFERENCES "Cliente"("id") ON DELETE RESTRICT ON UPDATE CASCADE;