lasthourcloud/bootstrap/helpers/constants.php
2023-08-10 15:52:54 +02:00

12 lines
258 B
PHP

<?php
const DATABASE_TYPES = ['postgresql'];
const VALID_CRON_STRINGS = [
'every_minute' => '* * * * *',
'hourly' => '0 * * * *',
'daily' => '0 0 * * *',
'weekly' => '0 0 * * 0',
'monthly' => '0 0 1 * *',
'yearly' => '0 0 1 1 *',
];