/ db / migrations / add-config-low-score-cutoff.sql
add-config-low-score-cutoff.sql
1  -- Add low_score_cutoff to config table
2  -- This defines the score threshold below which proposals should be generated
3  INSERT OR REPLACE INTO config (key, value, description, updated_at) 
4  VALUES (
5    'low_score_cutoff',
6    '82',
7    'Sites with conversion_score scores below this threshold are considered "low-scoring" and eligible for proposal generation',
8    CURRENT_TIMESTAMP
9  );