PS E:\PROJECT\LOOPBACK\meetupz> 节点服务器/bin/automigration.js
代码:
var app = require('../server');
// this loads the accountDb configuration in ~/server/datasources.json
var dataSource = app.dataSources.db;
dataSource.automigrate('User', function(err) {
if (err) throw err;
dataSource.disconnect();
});
// this automigrates the model
dataSource.automigrate('meetup', function(err) {
if (err) throw err;
dataSource.disconnect();
});
结果:
未处理的拒绝错误:ORA-24422:尝试销毁会话时发生错误
请帮忙