我是初学者,我开始使用compoudjs,我使用jungglingdb 作为数据库和模块jungglung-postgres。我的问题是,如何向创建的表添加约束?我试试这个 var User = describe('User', function () { property('firstname', String); property('lastname', String); property('password', String,{ limit: 50); property( 'email', String {unique:true}); property('approved', Boolean); set('restPath', pathTo.users); }); 但它不工作
请帮忙。坦克