Snog
Well-known member
- Affected version
- 2.0 Beta 3
While attempting to upgrade one of my add-ons, the upgrade would halt and only show the 'The site is currently being upgraded. Please check back later.' message on a white screen.
There were no other errors, nothing in the error log and nothing in the server error log.
It turned out to be a mistyped "default" for changeColumn
I don't know if the halt on a white screen is by design or not. But some hint has to what went wrong would be really helpful.
There were no other errors, nothing in the error log and nothing in the server error log.
It turned out to be a mistyped "default" for changeColumn
$table->changeColumn('thisid', 'INT', 10)->default(0);
should have been $table->changeColumn('thisid', 'INT', 10)->setDefault(0);
.I don't know if the halt on a white screen is by design or not. But some hint has to what went wrong would be really helpful.