Просмотр файла app/Models/Migration.php

Размер файла: 273B
  1. <?php
  2.  
  3. declare(strict_types=1);
  4.  
  5. namespace App\Models;
  6.  
  7. /**
  8. * Class Migration
  9. *
  10. * @property int $id
  11. * @property string $name
  12. * @property int $batch
  13. */
  14. class Migration extends Model
  15. {
  16. /**
  17. * Table name
  18. */
  19. protected string $table = 'migrations.csv';
  20. }