Blog App Schema
The Blog App Schema is a comprehensive schema for a blogging platform. It includes support for MongoDB, PostgreSQL, and MySQL databases with features like posts, categories, comments, and likes.
Database Support
Installation all schemas
npx servercn-cli add schema blog-appInstallation individual schema
If you install schema individually, the relationships between them won't be automatic—you'll need to implement them manually.
1. User
npx servercn-cli add schema blog-app/user2. Post
npx servercn-cli add schema blog-app/post3. Category
npx servercn-cli add schema blog-app/category4. Comment
npx servercn-cli add schema blog-app/comment5. Post Like
npx servercn-cli add schema blog-app/post-like6. Comment Like
npx servercn-cli add schema blog-app/comment-like