2021-01-17 04:07:39 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
2021-01-23 21:09:16 +01:00
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
2021-01-17 04:07:39 +01:00
|
|
|
|
|
|
|
class AddCronMonth extends Migration
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function up()
|
|
|
|
{
|
|
|
|
Schema::table('schedules', function (Blueprint $table) {
|
|
|
|
$table->string('cron_month')->after('cron_day_of_week');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function down()
|
|
|
|
{
|
|
|
|
Schema::table('schedules', function (Blueprint $table) {
|
|
|
|
$table->dropColumn('cron_month');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|