@@ -28,9 +28,7 @@ exports.up = function (knex) {
table.boolean('late')
table.timestamp('timestamp').defaultTo(knex.fn.now())
table.string('memo').nullable()
- return table
- }).then(_ => {
- knex('signups').insert(rows).then(res)
+ res()
}).catch(rej)
})