- 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
12 lines
No EOL
442 B
SQL
12 lines
No EOL
442 B
SQL
-- Drop the trigger first
|
|
DROP TRIGGER IF EXISTS trigger_update_job_descriptions_timestamp ON job_descriptions;
|
|
|
|
-- Drop the trigger function
|
|
DROP FUNCTION IF EXISTS update_job_descriptions_updated_at();
|
|
|
|
-- Drop the indexes
|
|
DROP INDEX IF EXISTS idx_job_descriptions_criteria;
|
|
DROP INDEX IF EXISTS idx_job_descriptions_job_id;
|
|
|
|
-- Drop the table (this will automatically drop any remaining dependencies)
|
|
DROP TABLE IF EXISTS job_descriptions; |