You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
an association such as
class Student
has_many :classes, :through => :student_class
end
creates the association to Class in the Student java class, however it's treated like a regular has_many (i.e. Class is expected to have Student's ids as a foreign key)
The text was updated successfully, but these errors were encountered:
ifnot_matchesmatching_lines=matching_lines.reject{ |l| l =~ /^\s*#{not_matches}/}end
The regex looks incorrect. It specifies: start of line + zero or any number of space + the not_matches string, which is often not true because there could be some characters other than space before the not_matches token.
an association such as
class Student
has_many :classes, :through => :student_class
end
creates the association to Class in the Student java class, however it's treated like a regular has_many (i.e. Class is expected to have Student's ids as a foreign key)
The text was updated successfully, but these errors were encountered: