Closed (fixed)
Project:
FeedAPI
Version:
5.x-1.2
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
16 Apr 2008 at 18:44 UTC
Updated:
17 May 2008 at 16:41 UTC
Update #9
* Failed: ALTER TABLE {feedapi} ADD skip SMALLINT NOT NULL DEFAULT '0'
* Failed: CREATE INDEX {feedapi}_skip_idx ON {feedapi} (skip)Update #10
* Failed: ALTER TABLE {feedapi} ALTER COLUMN url TYPE text, ALTER COLUMN link TYPE text
Comments
Comment #1
mustafau commentedI did not tested following codes. Just copied and pasted from system.install file.
$ret[] = update_sql("ALTER TABLE {feedapi} ADD skip SMALLINT NOT NULL DEFAULT '0'");can be implemented as
db_add_column($ret, 'feedapi', 'skip', 'smallint', array('not null' => TRUE, 'default' => 0));and
can be implemented as
Comment #2
mustafau commentedComment #3
aron novakWell, what is the version of the postgresql that you use?
I tested all of my install scripts with this:
I read at the http://drupal.org/requirements page that i should rely on "PostgreSQL 7.4 or higher".
Comment #4
Narno commentedI use PostgreSQL 7.4.16 :-)
Comment #5
aron novakNarno:
I committed what mustafau suggested. Please try it out and if you still experience nonsense, please reopen the ticket.
Comment #6
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.