diff options
author | Greg Sabino Mullane | 2013-09-22 18:33:44 +0000 |
---|---|---|
committer | Greg Sabino Mullane | 2013-09-22 18:33:44 +0000 |
commit | 4a638d70004adfe93383c768f18c122b87fc1d34 (patch) | |
tree | 165823b08b3b32fe824ff52a37c92b661aa65761 | |
parent | 3e8b5c9c4794bf01943f0da1ef3a97a1c1207872 (diff) |
Adding a jstkind to the dummy pgagent schema, so the recent changes that reference it can work.
-rw-r--r-- | t/02_pgagent_jobs.t | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/t/02_pgagent_jobs.t b/t/02_pgagent_jobs.t index 74f768a8c..26f518266 100644 --- a/t/02_pgagent_jobs.t +++ b/t/02_pgagent_jobs.t @@ -39,6 +39,7 @@ $dbh->do(q{ CREATE TABLE pgagent.pga_jobstep ( jstid serial NOT NULL PRIMARY KEY, jstjobid int4 NOT NULL REFERENCES pgagent.pga_job(jobid), + jstkind char NOT NULL DEFAULT 'b', jstname text NOT NULL ); |