为 Knex 设置默认数据库?

Set default database for Knex?

如何在 knexfile.js 中设置默认数据库?

module.exports = {
  local: {
    client: 'postgresql',
    connection: {
      database: 'main'
    },
    pool: {
      min: 2,
      max: 10
    },
    default: true  // <-- incorrect, whats the right way?
  }
}

如果你的意思是默认“how to make knex conmandline client to select which configuration to use”,那么默认称为'development',你可以通过设置NODE_PROFILE来选择不同的配置环境变量。

很抱歉来自手机的简短回答 phone。我是凭记忆写的,所以上面提到的名字可以使用事实核查。