| 7 | |
| 8 | use Illuminate\Database\Eloquent\Model; |
| 9 | class GetCouponLog extends Model |
| 10 | { |
| 11 | protected $table = 'chihe_coupon_log'; |
| 12 | protected $fillable = [ |
| 13 | 'id', |
| 14 | 'user_id', |
| 15 | 'created_at', |
| 16 | 'project_id', |
| 17 | ]; |
| 18 | const UPDATED_AT = null; |
| 19 | } |
| 20 |
nothing calls this directly
no outgoing calls
no test coverage detected