mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-13 04:30:41 -05:00
11 lines
159 B
PHP
11 lines
159 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Models;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Relations\Pivot;
|
||
|
|
||
|
class ModVersionSptVersion extends Pivot
|
||
|
{
|
||
|
public $incrementing = true;
|
||
|
}
|