mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 16:56:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			169 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			169 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Models;
 | 
						|
 | 
						|
class EggMount extends Model
 | 
						|
{
 | 
						|
    protected $table = 'egg_mount';
 | 
						|
 | 
						|
    protected $primaryKey = null;
 | 
						|
 | 
						|
    public $incrementing = false;
 | 
						|
}
 |