Error after Update to version 2024.01.08 or higher - binbash23/p GitHub Wiki

If you get the error:

sqlite3.OperationalError: no such column: connector_type

after an update to p version 2024.01.08 or higher, execute these commands in pshell:

sql alter table account add column connector_type text
sql alter table account_history add column connector_type text

Or you can execute the sql commands in in a SQLite DBbrowser:

alter table account add column connector_type text;
alter table account_history add column connector_type text;

After adding the new columns the error should disappear.