feat(test): add multi-engine integration matrix

This commit is contained in:
kj
2026-09-05 16:15:28 -03:00
parent 48d3ed6b3f
commit d0c4b3c503
15 changed files with 1278 additions and 38 deletions

20
tests/Models/Post.php Normal file
View File

@@ -0,0 +1,20 @@
<?php
namespace Tests\Models;
use Libs\Model;
/**
* Post - DuckBrain test fixture
*
* Second table of the integration matrix, joined to Users through user_id.
* Column names avoid SQL reserved words on every engine.
*/
final class Post extends Model
{
public ?int $id;
public ?int $userId;
public string $title;
public ?string $content;
public ?float $rating;
}