返回 DeepSeek-Reasonix
seed.sql
根目录 / workers / forum / seed.sql
1 -- Initial categories. Apply after schema.sql:
2 -- wrangler d1 execute reasonix-forum --remote --file=seed.sql
3 INSERT OR IGNORE INTO categories (slug, name, description, position, min_trust_to_post) VALUES
4 ('announcements', 'Announcements', 'Releases, roadmap, and community news from the team.', 1, 4),
5 ('help', 'Help & Support', 'Stuck on setup, config, or cache behavior? Ask here.', 2, 0),
6 ('skills', 'Skills & Plugins', 'Share, request, and review community skills and MCP servers.', 3, 0),
7 ('show', 'Show & Tell', 'Built something with Reasonix? Show the community.', 4, 0),
8 ('feedback', 'Feedback & Ideas', 'Feature requests and product feedback.', 5, 0);
9
9 lines SQL