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

18
src/Models/Test.php Normal file
View File

@ -0,0 +1,18 @@
<?php
namespace BitGoblin\Colossus\Models;
use Illuminate\Database\Eloquent\Model;
class Test extends Model {
protected $fillable = [
'name',
'description',
];
public function results() {
return $this->hasMany(Result::class);
}
}