Closed (fixed)
Project:
Account reminder
Version:
5.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
14 Sep 2007 at 13:43 UTC
Updated:
30 Mar 2008 at 15:34 UTC
The code you have now only supports mysql
I have the proper create table/index for postgresql if you can integrate it
CREATE TABLE account_reminder (
uid INTEGER PRIMARY KEY ,
last_reminder TIMESTAMP ,
msg_cnt INTEGER
);
CREATE UNIQUE INDEX last_reminder_idx ON account_reminder (last_reminder);
CREATE UNIQUE INDEX msg_cnt_idx ON account_reminder (msg_cnt);
Comments
Comment #1
jaydub commentedThe latest commit to CVS should take care of these issues. I've changed the table
structure to accomodate PostgreSQL and altered the date logic in the SQL as a result.
Please take a chance to test out!
Comment #2
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.