OracleActAllocationDetails.php 331 B

1234567891011121314
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class OracleActAllocationDetails extends Model
  5. {
  6. protected $connection="oracle";
  7. protected $primaryKey="ALLOCATIONDETAILSID";
  8. protected $table="act_allocation_details";
  9. public $timestamps=false;
  10. public function getIncrementing(){ return false;}
  11. }