Major Changes: - Database: Install pg_bigm/pgvector plugins, create test database - Python service: v1.0 -> v1.1, add pymupdf4llm/openpyxl/pypandoc - Node.js backend: v1.3 -> v1.7, fix pino-pretty and ES Module imports - Frontend: v1.2 -> v1.3, skip TypeScript check for deployment - Code recovery: Restore empty files from local backup Technical Fixes: - Fix pino-pretty error in production (conditional loading) - Fix ES Module import paths (add .js extensions) - Fix OSSAdapter TypeScript errors - Update Prisma Schema (63 models, 16 schemas) - Update environment variables (DATABASE_URL, EXTRACTION_SERVICE_URL, OSS) - Remove deprecated variables (REDIS_URL, DIFY_API_URL, DIFY_API_KEY) Documentation: - Create 0126 deployment folder with 8 documents - Update database development standards v2.0 - Update SAE deployment status records Deployment Status: - PostgreSQL: ai_clinical_research_test with plugins - Python: v1.1 @ 172.17.173.84:8000 - Backend: v1.7 @ 172.17.173.89:3001 - Frontend: v1.3 @ 172.17.173.90:80 Tested: All services running successfully on SAE
53 lines
1.1 KiB
SQL
53 lines
1.1 KiB
SQL
-- 恢复 platform_schema.job_common 表
|
|
-- 从备份文件 rds_init_20251224_154529.sql 提取
|
|
|
|
CREATE TABLE IF NOT EXISTS platform_schema.job_common (
|
|
id uuid DEFAULT gen_random_uuid() NOT NULL,
|
|
name text NOT NULL,
|
|
priority integer DEFAULT 0 NOT NULL,
|
|
data jsonb,
|
|
state platform_schema.job_state DEFAULT 'created'::platform_schema.job_state NOT NULL,
|
|
retry_limit integer DEFAULT 2 NOT NULL,
|
|
retry_count integer DEFAULT 0 NOT NULL,
|
|
retry_delay integer DEFAULT 0 NOT NULL,
|
|
retry_backoff boolean DEFAULT false NOT NULL,
|
|
retry_delay_max integer,
|
|
expire_seconds integer DEFAULT 900 NOT NULL,
|
|
deletion_seconds integer DEFAULT 604800 NOT NULL,
|
|
singleton_key text,
|
|
singleton_on timestamp without time zone,
|
|
start_after timestamp with time zone DEFAULT now() NOT NULL,
|
|
created_on timestamp with time zone DEFAULT now() NOT NULL,
|
|
started_on timestamp with time zone,
|
|
completed_on timestamp with time zone,
|
|
keep_until timestamp with time zone DEFAULT (now() + '336:00:00'::interval) NOT NULL,
|
|
output jsonb,
|
|
dead_letter text,
|
|
policy text
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|