spatie / laravel-backup

A package to backup your Laravel app
https://spatie.be/docs/laravel-backup
MIT License
5.64k stars 763 forks source link

Added null option for unlimited backup storage size #1788

Closed rcerljenko closed 5 months ago

rcerljenko commented 5 months ago

Hi,

I've added unlimited storage option for backups. We had a situation where we wanted to keep our backups for 30 days (backup command is run every hour) and it's a fairly large databse which grows each day so it's a little hard to determine max limit for storage and it feels kinda wrong to set it to some very very big number.

Thx!

freekmurze commented 5 months ago

Instead of 0 could you use null to use this feature?

rcerljenko commented 5 months ago

Instead of 0 could you use null to use this feature?

Sure

freekmurze commented 5 months ago

Thanks!