d0e17ee
The official home of JBidwatcher's source code, an eBay auction sniping, bidding & monitoring software application. — Read more
http://www.jbidwatcher.com
This URL has Read+Write access
Fix a stupid mistake that will bite new installs. [#862 tagged:committed]
1 2 3 4 5 6 7 8 9 10 11 12 13 14
CREATE TABLE time_queue ( id integer NOT NULL generated by default as identity (START WITH 1, INCREMENT BY 1), destination varchar(255) default NULL, payload varchar(255) default NULL, fire_at timestamp default NULL, repeat_interval integer default NULL, repeat_count integer default NULL, PRIMARY KEY (id)) CREATE INDEX IDX_TQ_Destination ON time_queue(destination, payload) CREATE INDEX IDX_TQ_FireAt ON time_queue(fire_at)