CREATE TABLE IF NOT EXISTS `application_proofs` ( `id` INT AUTO_INCREMENT PRIMARY KEY, `application_id` INT NOT NULL, `file_path` VARCHAR(255) NOT NULL, `uploaded_at` TIMESTAMP DEFAULT CURRENT_TIMESTAMP, FOREIGN KEY (`application_id`) REFERENCES `applications`(`id`) ON DELETE CASCADE ); ALTER TABLE `applications` DROP COLUMN `proof_screenshot_path`;