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
#dynamic_schema has this typo: find_by_id(id: ...)
which should be either find_by(id: ...) or find_by_id(...); as written, it always returns nil, which means this methods always ignores a set dynamic_schema_id value and resorts to the fallback condition and looks up (or creates) the newest available schema.
The text was updated successfully, but these errors were encountered:
#dynamic_schema has this typo:
find_by_id(id: ...)
which should be either
find_by(id: ...)
orfind_by_id(...)
; as written, it always returnsnil
, which means this methods always ignores a setdynamic_schema_id
value and resorts to the fallback condition and looks up (or creates) the newest available schema.The text was updated successfully, but these errors were encountered: