forked from tobias/RailRoad
-
Notifications
You must be signed in to change notification settings - Fork 142
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Diagram for model vs subdirectory model is not generated correctly #66
Comments
Same problem.
|
YAY! Closed 👍
|
👍 |
Actually, just the second problem seems to be fixed; the original one still remains. |
👍 |
Any update on this? I'm getting the same results. |
Not from me. I have namespaced models in a particular project but haven't seen this issue. :/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hello, i have found if you have models like these two below
class System::User < ActiveRecord::Base
has_many :patients, foreign_key: "system_user_id"
end
class Patient < ActiveRecord::Base
belongs_to :system_user, :class_name => 'System::User', foreign_key: "system_user_id"
end
on diagram, model patient is not linked with model System::User instead new(non existing) model System::Patient is shown.
The text was updated successfully, but these errors were encountered: