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

jaydub’s picture

Status: Active » Fixed

The 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!

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.