-- SQL to add print_header_image and pdf_header_image columns to companies table
-- Run this SQL to update your existing companies table

ALTER TABLE `companies` 
ADD COLUMN `print_header_image` VARCHAR(255) DEFAULT '' AFTER `logo_path`,
ADD COLUMN `pdf_header_image` VARCHAR(255) DEFAULT '' AFTER `print_header_image`;
