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
>>>page=Page.get(id=1)
>>>page.update(name="this is probably not how this should work").execute()
('UPDATE pages SET "name" = %s', [u'this is probably not how this should work'])
1110>>>Page.ALL.count()
('SELECT Count(*) FROM pages AS p1', [])
1110L
The text was updated successfully, but these errors were encountered:
@keredson I think that's what happening too but it was pretty unexpected, seems like an instance method should be there (or maybe throw an exception so it doesn't call the model function?)
@keredsonhttps://github.com/keredson I think that's what happening too
but it was pretty unexpected, seems like an instance method should be there
(or maybe throw an exception so it doesn't call the model function?)
eg.
The text was updated successfully, but these errors were encountered: