WP-Database-Helper/beans/Reference.php

14 lines
254 B
PHP
Raw Permalink Normal View History

2025-02-21 18:06:16 +00:00
<?php
namespace DatabaseHelper\beans;
use DatabaseHelper\enums\Propagation;
use DatabaseHelper\enums\Type;
class Reference
{
public string $name;
public ?Schema $otherTable;
public Propagation $onDelete;
public Propagation $onUpdate;
}