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
it works just fine if I use someModel.query().select()
but it does not work if I use it like someModel.query().select('someColumnAsd1')
it tries to select some_column_asd1 instead of one I set in decorator some_column_asd_1
it also breaks insterts\updates and any request that uses someColumnAsd1 as a reference to column
The text was updated successfully, but these errors were encountered:
I have a model
it works just fine if I use
someModel.query().select()
but it does not work if I use it like
someModel.query().select('someColumnAsd1')
it tries to select
some_column_asd1
instead of one I set in decoratorsome_column_asd_1
it also breaks insterts\updates and any request that uses
someColumnAsd1
as a reference to columnThe text was updated successfully, but these errors were encountered: