I am trying to use Strongloop with MySql but cannot figure out how to migrate or automatically create tables into a MySql database.
Is there at least a way to export the
To update and/or create all mysql tables for your models:
var dataSource = app.dataSources.mysql; dataSource.autoupdate(null, function (err) { if(err) return cb(err); return cb(); });