cyberfox / jbidwatcher

The official home of JBidwatcher's source code, an eBay auction sniping, bidding & monitoring software application.

This URL has Read+Write access

jbidwatcher / db / 014.sql
100644 14 lines (11 sloc) 0.379 kb
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)