我对hood的文档存在一些问题,没有关于config.json中应该包含的内容的解释。
我试过了:

{
  "development": {
    "driver": "postgres",
    "source": "my_development"
  }
}

但我有错误:
hood db:migrate
2014/06/23 12:53:14 applying migrations...
panic: missing "=" after "my_development" in connection info string"

最佳答案

hood文档中:



因此,driver值应为postgresql(以您的示例为例),并且source值应为key=value列表或完整的连接URI(如postgresql documentation中所述)。

一些示例(来自here):

  • postgres://pqgotest:password@localhost/pqgotest?sslmode=verify-full
  • user=pqgotest dbname=pqgotest sslmode=verify-full
  • 10-02 08:04