Retoor software development Projects Research SearchXNG
Register Sign In

8 lines
329 B
MySQL
Raw Normal View History

Integrate complete Candidat platform with ASP.NET chatbot service - Added Next.js frontend for candidate interviews - Added Node.js backend with TypeScript and AI integration - Added ASP.NET Core chatbot service for specialized AI conversations - Added MySQL database with complete schema - Added Nginx reverse proxy configuration - Complete Docker Compose orchestration for all services - Environment configuration for production, development, and Cloudflare - Comprehensive documentation and setup instructions - Flattened nested folder structures for clean organization - Integrated chatbot service with fallback to direct AI calls
2025-09-20 10:45:21 +02:00
USE candidb_main;
-- Add interview_style column to jobs table
ALTER TABLE jobs ADD COLUMN interview_style ENUM('personal', 'balanced', 'technical') DEFAULT 'balanced' AFTER interview_questions;
-- Update existing records to have 'balanced' as default
UPDATE jobs SET interview_style = 'balanced' WHERE interview_style IS NULL;
Reference in New Issue Copy Permalink
544854ec3f
tuna/backend/add-interview-style-column.sql
Response time: 39ms
Mail Licenses API