Fixed a few small typos

This commit is contained in:
2025-06-10 11:30:00 -04:00
parent 12b7743660
commit e42f453161
3 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ final class AddTestsTable extends AbstractMigration {
->addTimestamps()
->create();
$table = $this->table('test_benchmark');
$table = $this->table('benchmark_test');
$table->addColumn('test_id', 'integer', ['null' => false])
->addColumn('benchmark_id', 'integer', ['null' => false])
->addForeignKey('test_id', 'tests', 'id', ['delete'=> 'CASCADE', 'update'=> 'CASCADE'])