You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- rss_feeds: change from string[] to {name, url}[] to match ContentConfig
- rate_card_tiers: change from {name, price, impressions} to
{name, description, price} to match SponsorConfig
trend_sources_enabled jsonb NOT NULL DEFAULT '{"hn":true,"devto":true,"blogs":true,"youtube":true,"github":true}'::jsonb,
98
98
system_instruction textNOT NULL DEFAULT 'You are a content strategist and scriptwriter for CodingCat.dev, a web development education channel run by Alex Patterson.
99
99
@@ -141,7 +141,7 @@ COMMENT ON TABLE content_config IS 'Content discovery and generation: RSS feeds,
141
141
CREATETABLEIF NOT EXISTS sponsor_config (
142
142
id integerPRIMARY KEY DEFAULT 1CHECK (id =1),
143
143
cooldown_days integerNOT NULL DEFAULT 14,
144
-
rate_card_tiers jsonb NOT NULL DEFAULT '[{"name":"starter","price":500,"impressions":"5k-10k"},{"name":"growth","price":1500,"impressions":"10k-50k"},{"name":"premium","price":3000,"impressions":"50k+"}]'::jsonb,
144
+
rate_card_tiers jsonb NOT NULL DEFAULT '[{"name":"starter","description":"5k-10k impressions","price":500},{"name":"growth","description":"10k-50k impressions","price":1500},{"name":"premium","description":"50k+ impressions","price":3000}]'::jsonb,
0 commit comments