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
Using mongoid v3.x and railroady v1.1.0.
Here is an example:
class Shop::Apple
include Mongoid::Document
# etc..
has_many :bugs
end
class Bug
include Mongoid::Document
#etc..
belongs_to :apple, class_name: "Shop::Apple"
end
The following would produce a has_many arrow pointing to a "Shop::Bug" model when it should point to the (also drawn) "Bug" model. This also occurs for embedded relationships and so the problem is probably valid across the board.
The text was updated successfully, but these errors were encountered:
Using mongoid v3.x and railroady v1.1.0.
Here is an example:
The following would produce a has_many arrow pointing to a "Shop::Bug" model when it should point to the (also drawn) "Bug" model. This also occurs for embedded relationships and so the problem is probably valid across the board.
The text was updated successfully, but these errors were encountered: