string('cron_month')->after('cron_day_of_week'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('schedules', function (Blueprint $table) { $table->dropColumn('cron_month'); }); } }