AppDownloadEvent.php 304 B

1234567891011121314
  1. <?php
  2. namespace App\Models;
  3. class AppDownloadEvent extends BaseModel
  4. {
  5. public $timestamps = false;
  6. const CREATED_AT = 'occurred_at';
  7. const UPDATED_AT = null;
  8. protected $table = 'app_download_events';
  9. protected $guarded = [];
  10. protected $casts = ['occurred_at' => 'datetime'];
  11. }