2
1
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2023-12-13 21:00:40 +01:00

Adding missing return to MySQL exporter

closes #888
This commit is contained in:
Hannah Wolfe 2013-09-25 09:38:03 +01:00
parent 4b5cfbde2e
commit f68633df20

View file

@ -15,7 +15,7 @@ function getTablesFromSqlite3() {
}
function getTablesFromMySQL() {
knex.Raw("show tables").then(function (response) {
return knex.Raw("show tables").then(function (response) {
return _.flatten(_.map(response, function (entry) {
return _.values(entry);
}));