process wallet journal job which is a new job to make system faster for cron

This commit is contained in:
2019-05-03 22:54:29 -05:00
parent aefe83a49a
commit cc8da2f494
4 changed files with 205 additions and 22 deletions

View File

@@ -0,0 +1,27 @@
<?php
namespace App\Models\Jobs;
use Illuminate\Database\Eloquent\Model;
class ProcessWalletJournalJob extends Model
{
//Table Name
public $table = 'job_process_wallet_journal';
//Timestamps
public $timestamps = true;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'charId',
'division',
'page',
];
}
?>