jobs-monorepo/internal/migrations/003_add_unique_constraint_job_id.up.sql
Elshimy Ziad Magdy Taha 8ac872bdc6 feat: restructure project into monorepo with CI/CD
- Reorganized project structure into services/ and apps/ directories for better separation of concerns
- Added comprehensive CI/CD pipeline with GitHub Actions for testing and Docker builds
- Created .dockerignore file to optimize container builds
- Updated Makefile with new targets for each service and application
- Added detailed README with architecture overview, setup instructions and development guidelines
- Moved cron-analyzer to dedicate
2025-11-01 16:20:44 +05:00

2 lines
143 B
SQL

-- Add unique constraint to job_id column in job_descriptions table
ALTER TABLE job_descriptions ADD CONSTRAINT unique_job_id UNIQUE (job_id);