Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
FlymsgDeploymentRecord
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3namespace App\Http\Models;
4
5class FlymsgDeploymentRecord extends Moloquent
6{
7    /**
8     * The table associated with the model.
9     *
10     * @var string
11     */
12    protected $table = 'flymsg_deployment_records';
13
14    /**
15     * The attributes that are mass assignable.
16     *
17     * @var array
18     */
19    protected $fillable = [
20        'site_name', 'month_year', 'usage_count',
21    ];
22}