-- Add key_prefix column to store first 10 characters of API keys for display
ALTER TABLE api_keys ADD COLUMN key_prefix TEXT;

-- For any existing keys (if unhashed), we need to hash them and extract prefix
-- This migration assumes keys are already hashed from the model code
-- If there are existing unhashed keys, they would need manual migration
