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

Commit cc5ed3c5 by Ruben Bridgewater

Fix missing return

1 parent 3568ced8
......@@ -882,7 +882,7 @@ if (dialect.match(/^postgres/)) {
});
return this.User.sync({ force: true }).then(function() {
self.User
return self.User
.create({ username: 'user', fullName: 'John Smith' })
.then(function(user) {
// We can insert into a table with non-quoted identifiers
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!