Commit f2dd08ba authored by Alenso Lopes's avatar Alenso Lopes
Browse files
parents f4c2bf8a 66bd425c
Loading
Loading
Loading
Loading

app/Models/Boat.php

0 → 100644
+14 −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 Boat extends Model
{
    use HasFactory;
    protected $table = 'CAR_BOAT';

    protected $primaryKey = 'BO_ID';
}
+15 −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 DivingLocation extends Model
{
    use HasFactory;

    protected $table = 'CAR_DIVING_LOCATION';

    protected $primaryKey = 'DL_ID';
}
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@
 */
class DivingSession extends Model
{
    protected $table = 'car_diving_session';
    protected $table = 'CAR_DIVING_SESSION';
    protected $primaryKey = 'ds_code';
    protected $keyType = 'string';
    public $timestamps = false;
+1 −0

File added.

Preview size limit exceeded, changes collapsed.

+50 −0

File added.

Preview size limit exceeded, changes collapsed.

Loading