-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issues upgrading from 2.13.2 to 2.36.0 #1180
Comments
Additionally, the reports appear to come in a random order, not by given or family name. |
That SQL looks incorrect.
Aside from that line of SQL, did the upgrade SQL run completely successfully? If so, you'll have to examine the logs, where you will probably see errors. The log location depends on your environment. On my server, PHP errors go to the Apache |
You're right that it was always an int column. I think that odd SQL was part of a wider drive to clean up blank strings etc. But I just ran that query on my system and it didn't provoke any errors. So I think it's a red herring for the current issue and it was more likely something around it that was erroring. It would be good to run the upgrade again from scratch and send us full details of the error that you're getting. |
We are upgrading Jethron from 2.13.2 to 2.39.0 for s customer.
One SQL script generated an error. On line 46 of 2017-upgrade-to-2.19.sql, we see:
UPDATE _person SET congregationid = NULL WHERE (congregationid = '' OR congregationid = '0');
I changed this to:
UPDATE _person SET congregationid = NULL WHERE (congregationid = 0);
and then restarted the whole upgrade procedure.
Is this fix correct?
All the scripts now seem to run. However, when I login as an administrator and list all persons I get an empty list. If I put % in the search, all the persons do seem to appear. Also, there is no longer an include/exclude archived persons option. What do I need to do to make default list all reports
be not empty?
Thanks,
Simon
The text was updated successfully, but these errors were encountered: