-- Migration: Add event_data column to company_stats table
-- Run this to fix the missing column error

ALTER TABLE company_stats ADD COLUMN event_data TEXT NULL;
