serendipity_event_trackback.php creates mysqlisch table
Posted: Thu Mar 31, 2011 11:31 pm
Hello,
the trackback plugin contains SQL code to create a table - which is quite MySQL-specific:
At least on PostgreSQL, the "unsigned" fails - and since S9Y never shows any SQL errors, I only found this problem when checking the logfile.
the trackback plugin contains SQL code to create a table - which is quite MySQL-specific:
Code: Select all
$sql = "CREATE TABLE {$serendipity['dbPrefix']}delayed_trackbacks (
id int(11) NOT NULL ,
timestamp int(10) unsigned default NULL,
PRIMARY KEY (id)
)";