mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 17:12:30 +01:00
a043071e3c
Co-authored-by: Matthew Penner <me@matthewp.io>
33 lines
666 B
PHP
33 lines
666 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
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');
|
|
});
|
|
}
|
|
}
|