Able to add scheduled backups through the UI
This commit is contained in:
10
bootstrap/helpers/constants.php
Normal file
10
bootstrap/helpers/constants.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
const DATABASE_TYPES = ['postgresql'];
|
||||
const VALID_CRON_STRINGS = [
|
||||
'hourly' => '0 * * * *',
|
||||
'daily' => '0 0 * * *',
|
||||
'weekly' => '0 0 * * 0',
|
||||
'monthly' => '0 0 1 * *',
|
||||
'yearly' => '0 0 1 1 *',
|
||||
];
|
||||
Reference in New Issue
Block a user