Adding a jstkind to the dummy pgagent schema, so the recent changes that reference...
authorGreg Sabino Mullane <[email protected]>
Sun, 22 Sep 2013 18:33:44 +0000 (14:33 -0400)
committerGreg Sabino Mullane <[email protected]>
Sun, 22 Sep 2013 18:33:44 +0000 (14:33 -0400)
t/02_pgagent_jobs.t

index 74f768a8c4b7a2cf061af5001362e9ff3cd9b837..26f51826646930c653e551e9b25f2926efd55047 100644 (file)
@@ -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
     );