The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
-- Convert schema 'upgrades/Tapper-Schema-ReportsDB-2.010027-SQLite.sql' to 'upgrades/Tapper-Schema-ReportsDB-2.010029-SQLite.sql':;

BEGIN;

CREATE TABLE reportgrouptestrunstats (
  testrun_id INTEGER PRIMARY KEY NOT NULL,
  total INT(10),
  failed INT(10),
  passed INT(10),
  parse_errors INT(10),
  skipped INT(10),
  todo INT(10),
  todo_passed INT(10),
  wait INT(10),
  success_ratio VARCHAR(20)
);


COMMIT;