标签: node.js postgresql sails.js sails-postgresql
我已经在PostgreSQL上创建了一个树结构,现在需要将该结构保存到Sails中,但是在定义模型时不能引入“ ltree”数据类型。我的模型定义如下:
module.exports = { datastore: 'postgres', attributes: { name:{ type:'string', }, path:{ type:'ltree', } },
我在哪里做错了?