CREATE TABLE IF NOT EXISTS `survey_questions` ( `id` INT AUTO_INCREMENT PRIMARY KEY, `survey_id` INT NOT NULL, `question_text` TEXT NOT NULL, `question_type` VARCHAR(50) NOT NULL, -- e.g., 'text', 'textarea', 'rating', 'multiple-choice' `options` TEXT, -- For multiple-choice questions, store options as a JSON array or comma-separated values `created_at` TIMESTAMP DEFAULT CURRENT_TIMESTAMP, FOREIGN KEY (`survey_id`) REFERENCES `surveys`(`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;