Added Test class to track benchmark groups

This commit is contained in:
2022-11-25 19:39:51 -05:00
parent 9a65b5f27a
commit ca62be49b6
12 changed files with 245 additions and 4 deletions

View File

@ -20,7 +20,7 @@ final class AddResultsTable extends AbstractMigration
{
$table = $this->table('results');
$table->addColumn('component', 'string', ['null' => false])
->addColumn('benchmark', 'text', ['null' => false])
->addColumn('benchmark', 'string', ['null' => false])
->addColumn('type', 'string', ['null' => false, 'default' => 'fps'])
->addColumn('average', 'integer', ['null' => false])
->addColumn('minimum', 'integer')