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
drop table events CREATE TABLE events ( id integer NOT NULL generated by default as identity (START WITH 1, INCREMENT BY 1), entry_id integer default NULL, repeat_count integer default 0, created_at timestamp default NULL, message varchar(255) default NULL, title varchar(255) default NULL, PRIMARY KEY (id)) CREATE INDEX IDX_Events_Entries ON events(entry_id)