diff options
author | BakedSnake <gilferrandm@gmail.com> | 2021-03-17 12:58:53 +0100 |
---|---|---|
committer | BakedSnake <gilferrandm@gmail.com> | 2021-03-17 12:58:53 +0100 |
commit | 188527c6b55a2d64d5f76c5d3e094da45c69b0c9 (patch) | |
tree | 8c6c41a2ffe04af81483ec36f72d328c3c76780a /models/account.js |
Diffstat (limited to 'models/account.js')
-rw-r--r-- | models/account.js | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/models/account.js b/models/account.js new file mode 100644 index 0000000..d6f43b4 --- /dev/null +++ b/models/account.js @@ -0,0 +1,21 @@ +const mongoose = require("mongoose"); + +const AccountSchema = new mongoose.Schema({ + name: String, + email: String, + author: { + id: { + type: mongoose.Schema.Types.ObjectId, + ref: "User", + }, + username: String, + }, + posts: [ + { + type: mongoose.Schema.Types.ObjectId, + ref: "blogPost", + }, + ], +}); + +module.exports = new mongoose.model("Account", AccountSchema);
\ No newline at end of file |