sails.js中的多个数据库连接,每个连接都有迁移设置

时间:2015-07-29 14:46:55

标签: node.js migration sails.js waterline

我在sails app中使用了两个连接:mongodb和postgresql。对于mongodb我想使用" alter"策略,但postgres db必须是readonly。有没有办法实现这个目标?

1 个答案:

答案 0 :(得分:4)

您无法在连接级别定义它,而是you can override the configuration for the models of your choice

// in api/models/PosgresModel.js
module.exports = {
  migrate: 'safe',
  attributes: {
    // The attributes definitions
  }
}