summaryrefslogtreecommitdiff
path: root/models/account.js
diff options
context:
space:
mode:
Diffstat (limited to 'models/account.js')
-rw-r--r--models/account.js21
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