Commit 156d07ee authored by Julien Ait azzouzene's avatar Julien Ait azzouzene
Browse files

in-progress: diving sessions model

parent ad9be4f3
Loading
Loading
Loading
Loading
+20 −0
Original line number Diff line number Diff line
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

class DivingSession extends Model
{
    protected $table = 'car_diving_session';
    protected $primaryKey = 'ds_code';
    protected $keyType = 'string';
    public $timestamps = false;

    /*protected $attributes = [
        'DS_CODE' => 'test'
    ];*/

    use HasFactory;
}