1

プロジェクトをビルドするために Sails.js を使用しようとしていますが、問題が発生しています。postgres タイプを使用できるように、waterline postgres アダプターに渡される「タイプ」にパッチを適用したいと考えています。

現在の postgres アダプターのフォークがあり、タイプのウォーターライン サポートを変更して ltree を含めると、アダプターが機能します。

これは postgres アダプターのフォークです https://github.com/opus-1/sails-postgresql

そして、ここに私がモンキーパッチを適用したいコードがあります:

https://github.com/balderdashy/waterline/blob/master/lib/waterline/utils/types.js

module.exports = [
  'string',
  'text',
  'integer',
  'float',
  'date',
  'time',
  'datetime',
  'boolean',
  'binary',
  'array',
  'json',
  'mediumtext',
  'longtext',
  'objectid'
];
4

0 に答える 0