Нужно было yield добавить.
router.post('/registration', function* (next) {
var ctx = this;
yield models.users.create({
email: this.request.body.email
}).then(function() {
ctx.redirect('/');
});
})
Не совсем понимаю как это работает. Кто-то может объяснить?