Closed (fixed)
Project:
Custom Breadcrumbs
Version:
5.x-1.2
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
16 Jun 2008 at 08:33 UTC
Updated:
21 May 2009 at 05:00 UTC
Hello,
I found a problem when installing this module on a server using Postgresql 8.2.6.
It was solved modifying the file 'custom_breadcrumbs.install'.
1. Remove {}
2. correct typo: nid >=0 to bid >=0
CREATE TABLE custom_breadcrumb (
bid serial CHECK (bid >= 0),
titles varchar(255) NOT NULL default '',
paths varchar(255) NOT NULL default '',
node_type varchar(64) default ''
)
Comments
Comment #1
kotoponus commentedIf you get the following errors:
Don't forget to run this after above query:
CREATE INDEX custom_breadcrumb_bid_idx ON custom_breadcrumb (bid);
Comment #2
MGN commentedThanks. This was fixed in duplicate issue #346113: PgSql Support and committed to 5.x-1.x-dev.