more fixes to migration

This commit is contained in:
azivner
2017-10-22 20:29:31 -04:00
parent f49963dc67
commit 14625cc613
3 changed files with 16 additions and 15 deletions

View File

@@ -21,7 +21,6 @@ router.get('/:noteId', auth.checkApiAuth, async (req, res, next) => {
res.send({
'detail': detail,
'links': await sql.getResults("select * from links where note_id = ? order by note_offset", [noteId]),
'images': await sql.getResults("select * from images where note_id = ? order by note_offset", [noteId])
});
});