Múltiples relaciones con rails
AUTOR PREGUNTA #1
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#2
class Persona < ActiveRecord::Base; end class Estud < Persona; end class Instructor < Persona; end
Luego usamos has_many para identificar las múltiples relaciones:
class Curso < ActiveRecord::Base has_many :estud has_many :instructores end