commands and logs to the database

This commit is contained in:
2024-08-27 17:42:06 +03:00
parent 74d2fcc4fa
commit ae65ca47f6
16 changed files with 210 additions and 72 deletions
@@ -6,7 +6,7 @@ use Illuminate\Support\Facades\Schema;
return new class extends Migration {
protected $connection = 'lucentDb';
protected $connection = 'lucentdb';
/**
* Run the migrations.
@@ -6,7 +6,7 @@ use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
protected $connection = 'lucentDb';
protected $connection = 'lucentdb';
/**
* Run the migrations.
@@ -6,7 +6,7 @@ use Illuminate\Support\Facades\Schema;
return new class extends Migration {
protected $connection = 'lucentDb';
protected $connection = 'lucentdb';
/**
* Run the migrations.
*
@@ -6,7 +6,7 @@ use Illuminate\Support\Facades\Schema;
return new class extends Migration {
protected $connection = 'lucentDb';
protected $connection = 'lucentdb';
/**
* Run the migrations.
*
@@ -6,7 +6,7 @@ use Illuminate\Support\Facades\Schema;
return new class extends Migration {
protected $connection = 'lucentDb';
protected $connection = 'lucentdb';
/**
* Run the migrations.
*
@@ -6,7 +6,7 @@ use Illuminate\Support\Facades\Schema;
return new class extends Migration {
protected $connection = 'lucentDb';
protected $connection = 'lucentdb';
/**
* Run the migrations.
@@ -0,0 +1,35 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration {
protected $connection = 'lucentdb';
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('command_logs', function (Blueprint $table) {
$table->uuid('id')->primary();
$table->string('signature');
$table->integer('pid')->nullable();
$table->text('logs');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('command_logs');
}
};