Closed (fixed)
Project:
Forward
Version:
4.7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
12 Mar 2006 at 23:45 UTC
Updated:
9 Jun 2006 at 16:15 UTC
Jump to comment: Most recent file
Comments
Comment #1
seanrHave you verified that that works? I unfortunately do not have any way to test that. If others could try it and verify it, I'd appreciate it. I've attached a modified copy of the module with that code in the install function.
Comment #2
Shiny commentedIt works in Postgresql 8.0 and 7.4
I used php 5.0 and php 4.4
tested on on ubuntu linux, solaris, and free bsd.
however, i'd like to change the definitions to include a reference to the node table.
CREATE TABLE forward_log (
nid integer references node (nid) NOT NULL,
type text NOT NULL,
timestamp integer NOT NULL
);
CREATE index idx_forward_log_nid on forward_log (nid);
(i was suprised that timestamp isn't a reserved word - you might want to change that for future versions as it may prevent compatibility with other database servers people want to use)
Comment #3
seanrDone. Won't change timestamp, however, as that's used extensively throughout drupal (accesslog, aggregator_item, flood, history, node_counter, etc.), so I'd assume that's been tested pretty thoroughly by now.
Comment #4
(not verified) commented