What I want to do:
myTable.insert({id: 1, start_date: new Date(1976, 4, 1)}).then(function (data) {
console.log(data);
});
What I have to do instead :(
myTable.insert({id: 1, start_date: '1976-04-01'},).then(function (data) {
console.log(data);
});
Can we make dates do "the right thing" ? Or is that not possible?