first commit
This commit is contained in:
22
app/Models/PropertyCompetitorGroupMapping.php
Normal file
22
app/Models/PropertyCompetitorGroupMapping.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
class PropertyCompetitorGroupMapping extends BaseModel
|
||||
{
|
||||
protected $table = 'property_competitor_group_mapping';
|
||||
protected $primaryKey = 'id';
|
||||
public $timestamps = false;
|
||||
|
||||
protected $fillable = [
|
||||
'competitor_group_id',
|
||||
'property_id',
|
||||
'competitor_property_source',
|
||||
'competitor_property_key',
|
||||
'status',
|
||||
'created_by',
|
||||
'updated_by',
|
||||
'created_at',
|
||||
'updated_at',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user