aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/ddl-core.sql
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2012-12-21 22:24:41 +0100
committerTrygve Laugstøl <trygvis@inamo.no>2012-12-21 22:24:41 +0100
commita63ec924e5440b17434ecc91e84d1419ae39ef2a (patch)
tree933459602e0fcfd76a5f0d98d5465dc9f4aabed9 /src/main/resources/ddl-core.sql
parente7b1958ce5e93ead2d7d3c74eabe00a4186a048a (diff)
downloadesper-testing-a63ec924e5440b17434ecc91e84d1419ae39ef2a.tar.gz
esper-testing-a63ec924e5440b17434ecc91e84d1419ae39ef2a.tar.bz2
esper-testing-a63ec924e5440b17434ecc91e84d1419ae39ef2a.tar.xz
esper-testing-a63ec924e5440b17434ecc91e84d1419ae39ef2a.zip
o Adding a sequence number to jenkins_build.
o Making the table poller poll based on a sequence number instead.
Diffstat (limited to 'src/main/resources/ddl-core.sql')
-rw-r--r--src/main/resources/ddl-core.sql10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main/resources/ddl-core.sql b/src/main/resources/ddl-core.sql
index 25f373b..9dcdd09 100644
--- a/src/main/resources/ddl-core.sql
+++ b/src/main/resources/ddl-core.sql
@@ -9,11 +9,11 @@ DROP TABLE IF EXISTS person;
DROP TABLE IF EXISTS table_poller_status;
CREATE TABLE table_poller_status (
- poller_name VARCHAR(100) NOT NULL,
- last_created_date TIMESTAMP,
- last_run TIMESTAMP,
- duration INT,
- status VARCHAR(1000),
+ poller_name VARCHAR(100) NOT NULL,
+ last_seq INT NOT NULL,
+ last_run TIMESTAMP,
+ duration INT,
+ status VARCHAR(1000),
CONSTRAINT pk_job_status PRIMARY KEY (poller_name)
);