Rails - mas de una llave foranea
AUTOR PREGUNTA #1
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#2
def create @post = Post.find params[:post_id] @comment = @post.comments.build(params[:comment].merge(:user_id => current_user.id)) end
Y por último supongamos que tu módelo Comentarios llevará la foranea de Post:
class Comment < ActiveRecord::Base attr_protected :user_id end