object - Query tables imported via Rails gem -
i have gem (active_nutrition) has imported bunch of tables database. gem comes methods , such getting information imported tables easily.
however, want query info tables, because it's gem, can't seem query.
for example,
classname.all()
give me error
nomethoderror: undefined method 'all' activenutrition::objects::classname:class
so, possible query despite tables coming gem?
edit:
the class gem looks this:
module activenutrition module models class classname < activerecord::base
also, specific query made weight.all()
edit:
i think figured out. don't think rails likes composite id's, weight
table in particular uses. of other tables have own id's, can query them fine.
so, of other tables appear models, weight
appears object.
any class extends activerecord::base
can use method all
, find
, , others.
i advise source - the following classes extends activerecord. maybe querying wrong class?
Comments
Post a Comment