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
Trying to create a new brewnote throws this error:
[08:20:54.537] ERROR : void Database::updateEntry(Brewtarget::DBTable, int, const char*, QVariant, QMetaProperty, BeerXMLElement*, bool, bool) Could not update brewnote.attenuation to 100: UPDATE brewnote set attenuation=:value where id=121 ERROR: syntax error at or near "("
LINE 1: EXECUTE (100)
This is caused by
const QString kAttenuation("attenuation");
in brewnote.cpp. The brewnote table in the database does not have a field called "attenuation". I believe this should be
const QString kAttenuation("projected_atten");
The text was updated successfully, but these errors were encountered:
It would seem the event that should have added this to the table definition didn't fire? My table version is at 8 and has been at least as far back as 2017-12-27. This update marks database v7, so it looks like the code would have never fired.
Trying to create a new brewnote throws this error:
This is caused by
in brewnote.cpp. The brewnote table in the database does not have a field called "attenuation". I believe this should be
The text was updated successfully, but these errors were encountered: