mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-13 04:30:41 -05:00
Rebuilt the filtering queries and many of the mod-to-modVersion-to-sptVersion relationships. Resolves #38
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;
|
|
}
|