Add meta description property to Story model.

This commit is contained in:
Nathan Leniz
2015-03-09 18:36:55 +09:00
parent 64d1c4a908
commit 4976bd5825

View File

@ -14,6 +14,11 @@ var storySchema = new mongoose.Schema({
type: String,
unique: false
},
metaDescription: {
type: String,
default: '',
unique: false
},
description: {
type: String,
unique: false