summaryrefslogtreecommitdiffstats
path: root/common/src/main/webapp/usageguide/appserver/node_modules/mongoose/examples/schema/storing-schemas-as-json/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'common/src/main/webapp/usageguide/appserver/node_modules/mongoose/examples/schema/storing-schemas-as-json/index.js')
-rw-r--r--common/src/main/webapp/usageguide/appserver/node_modules/mongoose/examples/schema/storing-schemas-as-json/index.js27
1 files changed, 0 insertions, 27 deletions
diff --git a/common/src/main/webapp/usageguide/appserver/node_modules/mongoose/examples/schema/storing-schemas-as-json/index.js b/common/src/main/webapp/usageguide/appserver/node_modules/mongoose/examples/schema/storing-schemas-as-json/index.js
deleted file mode 100644
index 284b478..0000000
--- a/common/src/main/webapp/usageguide/appserver/node_modules/mongoose/examples/schema/storing-schemas-as-json/index.js
+++ /dev/null
@@ -1,27 +0,0 @@
-
-// modules
-var mongoose = require('../../../lib');
-var Schema = mongoose.Schema;
-
-// parse json
-var raw = require('./schema.json');
-
-// create a schema
-var timeSignatureSchema = Schema(raw);
-
-// compile the model
-var TimeSignature = mongoose.model('TimeSignatures', timeSignatureSchema);
-
-// create a TimeSignature document
-var threeFour = new TimeSignature({
- count: 3,
- unit: 4,
- description: '3/4',
- additive: false,
- created: new Date,
- links: ['http://en.wikipedia.org/wiki/Time_signature'],
- user_id: '518d31a0ef32bbfa853a9814'
-});
-
-// print its description
-console.log(threeFour);