Actions
Bug #53750
closedScheduler extension sql file is invalid
Start date:
2013-11-19
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
4.5
PHP Version:
Tags:
Complexity:
no-brainer
Is Regression:
No
Sprint Focus:
Description
The ext_tables.sql file of the scheduler extension is invalid.
On import into MySQL, an error is thrown and MySQL refuses to create the table:
ERROR 1067 (42000) at line 4: Invalid default value for 'uid'
This is due to the fact that a default value is being set for an auto_increment field.
This line:
uid int(11) unsigned DEFAULT '0' NOT NULL auto_increment,
Should read:
uid int(11) unsigned NOT NULL auto_increment,
Files
Actions