我在sails app中使用了两个连接:mongodb和postgresql。对于mongodb我想使用" alter"策略,但postgres db必须是readonly。有没有办法实现这个目标?
答案 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
}
}