Skip to content

Instantly share code, notes, and snippets.

@mholubowski
Created February 26, 2022 05:45
Show Gist options
  • Save mholubowski/e90bc5d80163e7dc54c00e0e2c885015 to your computer and use it in GitHub Desktop.
Save mholubowski/e90bc5d80163e7dc54c00e0e2c885015 to your computer and use it in GitHub Desktop.
Solid Affiliate Delete Old Visits
$ids = \SolidAffiliate\Models\Visit::select_ids([
'referral_id' => 0,
'created_at' => [
'operator' => '<',
'value' => \SolidAffiliate\Lib\Utils::date_picker_time('-30 days')
]
]);
foreach ($ids as $id) {
\SolidAffiliate\Models\Visit::delete($id, false);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment