Project

General

Profile

Actions

Bug #53750

closed

Scheduler extension sql file is invalid

Added by Michiel Roos over 10 years ago. Updated over 5 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
scheduler
Target version:
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

bugfix_53750.diff (565 Bytes) bugfix_53750.diff Michiel Roos, 2013-11-19 09:57
Actions

Also available in: Atom PDF