Prepare DoublerEntryCount for deprecation
This commit is contained in:
parent
51b2b01359
commit
dd0eb75a33
|
|
@ -3,19 +3,21 @@
|
|||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||
|
||||
//use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||
|
||||
// TODO Remove if truly deprecated. I think it is.
|
||||
class DoublerEntryCount extends Model
|
||||
{
|
||||
protected $table = 'doubler_entry_counts';
|
||||
|
||||
public function student(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(Student::class);
|
||||
}
|
||||
|
||||
public function event(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(Event::class);
|
||||
}
|
||||
// public function student(): BelongsTo
|
||||
// {
|
||||
// return $this->belongsTo(Student::class);
|
||||
// }
|
||||
//
|
||||
// public function event(): BelongsTo
|
||||
// {
|
||||
// return $this->belongsTo(Event::class);
|
||||
// }
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue