- <?php
- namespace App\Models;
- class AppDownloadEvent extends BaseModel
- {
- public $timestamps = false;
- const CREATED_AT = 'occurred_at';
- const UPDATED_AT = null;
- protected $table = 'app_download_events';
- protected $guarded = [];
- protected $casts = ['occurred_at' => 'datetime'];
- }
|