Skip to content

Instantly share code, notes, and snippets.

@codeyourwayup
Created August 19, 2020 06:01
Show Gist options
  • Save codeyourwayup/194f32dac8dadc8c69457b45d0041722 to your computer and use it in GitHub Desktop.
Save codeyourwayup/194f32dac8dadc8c69457b45d0041722 to your computer and use it in GitHub Desktop.
var mySchema = new Schema({
name: {
type: String
},
createdAt: {
type: Date,
default: Date.now
}
});
mySchema.methods.changedName = function() {
return this.name + 'TROLOLO';
};
Something = mongoose.model('Something', mySchema);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment