I need to run a command that creates database table each year quarter, and I found this command
$schedule->command('test:create-table table_test')->quarterly();
But I want to run this command a week before, just to be sure that the table already created before I start insert data into it.
What is the best way to achieve that?