Files
panel-pelican-dev/database/migrations/2017_09_10_225941_CreateSchedulesTable.php

40 lines
1.1 KiB
PHP
Raw Permalink Normal View History

2017-09-11 01:15:44 -05:00
<?php
use Illuminate\Database\Migrations\Migration;
2025-09-24 13:34:19 +02:00
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
2017-09-11 01:15:44 -05:00
2024-03-19 21:03:50 -04:00
return new class extends Migration
2017-09-11 01:15:44 -05:00
{
/**
* Run the migrations.
*/
2024-03-19 21:12:27 -04:00
public function up(): void
2017-09-11 01:15:44 -05:00
{
Schema::create('schedules', function (Blueprint $table) {
$table->increments('id');
$table->unsignedInteger('server_id');
$table->string('name')->nullable();
$table->string('cron_day_of_week');
$table->string('cron_day_of_month');
$table->string('cron_hour');
$table->string('cron_minute');
$table->boolean('is_active');
$table->boolean('is_processing');
$table->timestamp('last_run_at')->nullable();
$table->timestamp('next_run_at')->nullable();
2017-09-11 01:15:44 -05:00
$table->timestamps();
$table->foreign('server_id')->references('id')->on('servers')->onDelete('cascade');
});
}
/**
* Reverse the migrations.
*/
2024-03-19 21:12:27 -04:00
public function down(): void
2017-09-11 01:15:44 -05:00
{
Schema::dropIfExists('schedules');
}
2024-03-19 21:03:50 -04:00
};