Database Models
OUTDATED
This page is part of the documentation for release V1.0. This documentation is outdated and V1.0 is no longer maintained. See index for the latest information.
The database's structure is defined by the following collections:
- Blogs (defined in model/blog.js)
- Users (defined in model/users.js)
note
To learn more about using models with MongooseJS, see Using MongoDB.
Model instances are created and saved to the database in each model's corresponding API route.
- Blog posts are managed in routes/blog.js.
- Users are managed in routes/users.js.
To learn more about routes, see API & Routes.