不要怂,就是干,撸起袖子干!

Commit d91d48ff by Ali Taheri

fix the example at the docs home page

1 parent 940f8fb6
Showing with 2 additions and 2 deletions
...@@ -24,10 +24,10 @@ sequelize.sync().then(function() { ...@@ -24,10 +24,10 @@ sequelize.sync().then(function() {
return User.create({ return User.create({
username: 'janedoe', username: 'janedoe',
birthday: new Date(1980, 6, 20) birthday: new Date(1980, 6, 20)
}); }).then(function(jane) {
}).then(function(jane) {
console.log(jane.get({ console.log(jane.get({
plain: true plain: true
})) }))
});
}); });
``` ```
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!