From 4976bd582562b6f7154d20561f464557f2682a43 Mon Sep 17 00:00:00 2001 From: Nathan Leniz Date: Mon, 9 Mar 2015 18:36:55 +0900 Subject: [PATCH] Add meta description property to Story model. --- models/Story.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/models/Story.js b/models/Story.js index 59a455b63d..072a9dc3b5 100644 --- a/models/Story.js +++ b/models/Story.js @@ -14,6 +14,11 @@ var storySchema = new mongoose.Schema({ type: String, unique: false }, + metaDescription: { + type: String, + default: '', + unique: false + }, description: { type: String, unique: false