Files
alliance-services/app/Models/Lookup/SolarSystem.php
2026-03-15 18:13:33 -05:00

25 lines
384 B
PHP

<?php
namespace App\Models\Lookup;
use Illuminate\Database\Eloquent\Model;
class SolarSystem extends Model
{
public $table = 'solar_systems';
public $primaryKey = 'id';
public $timestamps = false;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'name',
'solar_system_id',
];
}