Files
sam-api/app/Models/Boards/BoardFile.php
hskwon 609ac39ffb feat : 테이블 및 DB 마이그레이션 파일 추가
products
  - common_codes
  - parts
  - products
  - files
  - price_histories
  - boms
  - bom_items

  boards
  - boards
  - board_settings
  - posts
  - board_comments
  - board_files
  - post_custom_field_values

  permissions
  - menus
  - roles
  - user_menu_permissions
  - role_menu_permissions

  tenants
  - tenants
  - plans
  - subscriptions
  - payments
2025-07-23 15:41:01 +09:00

16 lines
334 B
PHP

<?php
namespace App\Models\Boards;
use Illuminate\Database\Eloquent\Model;
class BoardFile extends Model
{
protected $table = 'board_files';
protected $fillable = ['post_id', 'file_path', 'file_name', 'file_size', 'file_type'];
public function post() {
return $this->belongsTo(Post::class, 'post_id');
}
}