14 lines
		
	
	
		
			254 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			254 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?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;
 | 
						|
} |