sql >> Base de Datos >  >> RDS >> PostgreSQL

Secuela guardando muchos a muchos

Ok, descubrí cómo hacerlo. Los documentos son muy confusos.

    var clientID = req.user.client_id;
    return Rule.create(req.body)
    .then(function(newRule){
          var ruleToAdd = newRule;
          return Client.findOne({ where: { id: clientID } })
    .then(function(client){
            return client.addRule(ruleToAdd)
            .then(function(ans){
              return ruleToAdd;
            })
    })