-- Meshkee CMS — order fulfillment process step (from business store settings) ALTER TABLE orders ADD COLUMN IF NOT EXISTS process_step_id VARCHAR(64) NOT NULL DEFAULT 'processing'; CREATE INDEX IF NOT EXISTS idx_orders_business_process_step ON orders (business_id, process_step_id);