Im about to make a huge schema for a form that I have just built... that being said does my schema order have to mimic the form order, or can it just have all the inputs in any order I put them in ? Example below. can it be like this?
// link to mongoose
var mongoose = require('mongoose');
// define the article schema
var mapSchema = new mongoose.Schema({
created: {
   type: Date,
   default: Date.now
},
dd1: {
    type: String,
    default: ''
},
dd2: {
    type: String,
    default: ''
},
com1: {
    type: String,
    default: ''
},
com2: {
    type: String,
    default: ''
}
});
// make it public
module.exports = mongoose.model('Map', mapSchema);
Or does it have to be like this?
// link to mongoose
var mongoose = require('mongoose');
// define the article schema
var mapSchema = new mongoose.Schema({
 created: {
   type: Date,
   default: Date.now
},
dd1: {
    type: String,
    default: ''
},
com1: {
    type: String,
    default: ''
},
 dd2: {
    type: String,
    default: ''
},
com2: {
    type: String,
    default: ''
}
});
// make it public
module.exports = mongoose.model('Map', mapSchema);
 
     
    