-- Add status column to invoices table ALTER TABLE invoices ADD COLUMN status ENUM('paid', 'unpaid', 'partially_paid') DEFAULT 'unpaid';