-- Ensure Ads hub is enabled and visible near top of Hubs list
USE aihub;
UPDATE modules SET status = 'enabled', sort_order = 12, description = 'Watch ads to earn or post your business ads'
WHERE slug = 'ads';
INSERT IGNORE INTO modules (slug, name, icon, description, status, sort_order) VALUES
('ads', 'Ads', '📺', 'Watch ads to earn or post your business ads', 'enabled', 12);
