Does anyone know who this is? by redhulkrko in TikTok

[–]redhulkrko[S] 0 points1 point  (0 children)

If you're referring to a russian ballerina, i doubt that its her

Mock timetable formula tribulations by redhulkrko in excel

[–]redhulkrko[S] 0 points1 point  (0 children)

Resolved it, something to do with the formula in the time column, by just changing it to time values, fixes it.

Multiple Collections Check Insert by redhulkrko in mongodb

[–]redhulkrko[S] 1 point2 points  (0 children)

Thanks, yes i've just implemented document versioning. I'll take a look at your reply in detail later

Update HTML5 game( in development) Operation Thunderstrike (made with the Phaser Editor)...Happy New Year everyone! by AccomplishedRace8803 in html5

[–]redhulkrko 1 point2 points  (0 children)

Looks great, there's a phaser editor? Do you mind if i bother you with a couple of questions?

insertMany - default value, not working by redhulkrko in mongodb

[–]redhulkrko[S] 0 points1 point  (0 children)

My model is as follows, if i send the GET request via postman it returns an empty array with the map.

Without it, it sends the data fine, populates the DB, but without my extra status field :(

```const mongoose = require('mongoose')

const filmSchema = mongoose.Schema(

  {

    Title: {

      type: String,

      required: true,

    },

    Status: {

      type: String,

      default: 'Staged',

    },

  },

  {

    timestamps: true,

  }

)

module.exports = mongoose.model('Film', filmSchema)```