31 lines
678 B
PHP
31 lines
678 B
PHP
<?php
|
||
|
||
namespace App\Models;
|
||
|
||
use Illuminate\Database\Eloquent\Model;
|
||
|
||
class ParkingRegulation extends Model
|
||
{
|
||
// テーブル名
|
||
protected $table = 'parking_regulations';
|
||
|
||
// プライマリキー
|
||
protected $primaryKey = 'parking_regulations_seq';
|
||
|
||
// 自動インクリメントが有効
|
||
public $incrementing = true;
|
||
|
||
// タイムスタンプ自動管理
|
||
public $timestamps = true;
|
||
|
||
// マスアサイン可能カラム
|
||
protected $fillable = [
|
||
'park_id',
|
||
'psection_id',
|
||
'ptype_id',
|
||
'regulations_text',
|
||
];
|
||
|
||
// 必要ならリレーションを追加(Park / Psection / Ptype がある場合)
|
||
}
|