如何在 Knex.js 迁移中使用 'money' 数据类型?

How to use 'money' data type in Knex.js migration?

我想在我的 Knex.js 迁移之一中使用 money 数据类型。

我正在使用具有 'money' 数据类型 (docs) 的 PostgresQL,我想在我的 table 中使用它。我试过简单地调用 table.money('price'),但我收到一条错误消息

TypeError: table.money is not a function

有什么方法可以通过 Knex.js 使用 money 数据类型?

使用 .specific Type(colUmn, type) 您可以将任何类型传递给架构构建器。