test command
This commit is contained in:
2
.env
2
.env
@@ -1,7 +1,7 @@
|
||||
APP_NAME='W4RP Services'
|
||||
APP_ENV=local
|
||||
APP_KEY=base64:PBOxrGFJAtwj9SDF4F0DZ1J+6MjrJmRiPZJQwRdy3XQ=
|
||||
APP_DEBUG=false
|
||||
APP_DEBUG=true
|
||||
APP_URL=https://services.w4rp.space
|
||||
|
||||
LOG_CHANNEL=daily
|
||||
|
||||
42
app/Console/Commands/TestCommand.php
Normal file
42
app/Console/Commands/TestCommand.php
Normal file
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
|
||||
namespace App\Console\Commands;
|
||||
|
||||
use Illuminate\Console\Command;
|
||||
|
||||
class TestCommand extends Command
|
||||
{
|
||||
/**
|
||||
* The name and signature of the console command.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $signature = 'command:name';
|
||||
|
||||
/**
|
||||
* The console command description.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $description = 'Command description';
|
||||
|
||||
/**
|
||||
* Create a new command instance.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
/**
|
||||
* Execute the console command.
|
||||
*
|
||||
* @return int
|
||||
*/
|
||||
public function handle()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
@@ -1,50 +0,0 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class CreateScheduleMonitorTables extends Migration
|
||||
{
|
||||
public function up()
|
||||
{
|
||||
Schema::create('monitored_scheduled_tasks', function (Blueprint $table) {
|
||||
$table->bigIncrements('id');
|
||||
|
||||
$table->string('name');
|
||||
$table->string('type')->nullable();
|
||||
$table->string('cron_expression');
|
||||
$table->string('timezone')->nullable();
|
||||
$table->string('ping_url')->nullable();
|
||||
|
||||
$table->dateTime('last_started_at')->nullable();
|
||||
$table->dateTime('last_finished_at')->nullable();
|
||||
$table->dateTime('last_failed_at')->nullable();
|
||||
$table->dateTime('last_skipped_at')->nullable();
|
||||
|
||||
$table->dateTime('registered_on_oh_dear_at')->nullable();
|
||||
$table->dateTime('last_pinged_at')->nullable();
|
||||
$table->integer('grace_time_in_minutes');
|
||||
|
||||
$table->timestamps();
|
||||
});
|
||||
|
||||
|
||||
Schema::create('monitored_scheduled_task_log_items', function (Blueprint $table) {
|
||||
$table->bigIncrements('id');
|
||||
|
||||
$table->unsignedBigInteger('monitored_scheduled_task_id');
|
||||
$table
|
||||
->foreign('monitored_scheduled_task_id', 'fk_scheduled_task_id')
|
||||
->references('id')
|
||||
->on('monitored_scheduled_tasks')
|
||||
->cascadeOnDelete();
|
||||
|
||||
$table->string('type');
|
||||
|
||||
$table->json('meta')->nullable();
|
||||
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
}
|
||||
12
public/vendor/horizon/app-dark.css
vendored
12
public/vendor/horizon/app-dark.css
vendored
File diff suppressed because one or more lines are too long
12
public/vendor/horizon/app.css
vendored
12
public/vendor/horizon/app.css
vendored
File diff suppressed because one or more lines are too long
2
public/vendor/horizon/app.js
vendored
2
public/vendor/horizon/app.js
vendored
File diff suppressed because one or more lines are too long
7
public/vendor/horizon/mix-manifest.json
vendored
7
public/vendor/horizon/mix-manifest.json
vendored
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"/app.js": "/app.js?id=a2e36b7a4f248973b22b",
|
||||
"/app.css": "/app.css?id=9ce01eaaba790566b895",
|
||||
"/app-dark.css": "/app-dark.css?id=821c845f9bf3b7853c33"
|
||||
"/app.js": "/app.js?id=d33e0bb4038cbbc2466e",
|
||||
"/app-dark.css": "/app-dark.css?id=ade35296e4fa0c99a758",
|
||||
"/app.css": "/app.css?id=c14814cc1a7a4f298934",
|
||||
"/img/favicon.png": "/img/favicon.png?id=1542bfe8a0010dcbee71"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user