Hi,
After some digging around in the 2.0.0-2022-07-05.sql file, I found that these two lines shared similar DB entry
notations but were notably different. The original Line 121 entry was creating the error that I noted above. The former DB
error was removed upon making the change noted below.
Line 110 (Comparative SQL entry):
ALTER TABLE `#__spsoccer_polls` CHANGE `enabled` `published` tinyint(1) NOT NULL DEFAULT '1';
Line 121 (Original SQL entry creating error callout):
ALTER TABLE `#__spsoccer_polloptions` CHANGE `enabled` `published` tinyint(1) NULL DEFAULT '1';
Line 121 (My updated SQL entry; Error removed):
ALTER TABLE `#__spsoccer_polloptions` CHANGE `enabled` `published` tinyint(1) NOT NULL DEFAULT '1';
Regards.