bookshelf.js timestamps not working
Ha, I finally got it!
You have to tell the model to use timestamps like this:
var User = bookshelf.Model.extend( {
tableName: "users",
hasTimestamps: true
} );
Ha, I finally got it!
You have to tell the model to use timestamps like this:
var User = bookshelf.Model.extend( {
tableName: "users",
hasTimestamps: true
} );