digitalbiblesociety/dbp

View on GitHub
app/Models/Bible/VideoTransportStream.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace App\Models\Bible;

use Illuminate\Database\Eloquent\Model;

class VideoTransportStream extends Model
{
    protected $connection = 'dbp';
    protected $table = 'bible_file_video_transport_stream';
    protected $fillable = ['file_name','runtime'];
}