004_scrape_results_extend.sql 280 B

1234567
  1. -- Migration 004: extend scrape_results with model info, rate limits, tool prices
  2. SET search_path TO crawl;
  3. ALTER TABLE scrape_results
  4. ADD COLUMN IF NOT EXISTS model_info JSONB,
  5. ADD COLUMN IF NOT EXISTS rate_limits JSONB,
  6. ADD COLUMN IF NOT EXISTS tool_prices JSONB;