The content on the help page located at:

http://drupal.org/node/254765

References:

CREATE TABLE `page_title` (  `type` varchar(15) NOT NULL default 'node',  `id` int(10) unsigned NOT NULL default '0',  `page_title` varchar(255) NOT NULL default '',  PRIMARY KEY  (`type`,`id`));

However looking at the local page_title table the values for id int(10) shows as int(11) with unsigned not set. Is id supposed to be int(10 or 11), with unsigned enabled or not?

Need clarification on correct values and/or updating of content on the page for the recommended action if the table is not created.

Comments

nicholasthompson’s picture

It's supposed to be 10 (to be in-line with the "nid" column in the {node} table). 11 just means the {page_title} table can store more Node ID's than the Node table. I should probably sort that in the install schema, a relatively minor issue though I think.

nicholasthompson’s picture

Issue summary: View changes

Updated typos

damienmckenna’s picture

Issue summary: View changes
Status: Active » Closed (won't fix)