commands and logs to the database
This commit is contained in:
+1
-1
@@ -6,7 +6,7 @@ use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration {
|
||||
|
||||
protected $connection = 'lucentDb';
|
||||
protected $connection = 'lucentdb';
|
||||
|
||||
/**
|
||||
* Run the migrations.
|
||||
+1
-1
@@ -6,7 +6,7 @@ use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
protected $connection = 'lucentDb';
|
||||
protected $connection = 'lucentdb';
|
||||
|
||||
/**
|
||||
* Run the migrations.
|
||||
+1
-1
@@ -6,7 +6,7 @@ use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration {
|
||||
|
||||
protected $connection = 'lucentDb';
|
||||
protected $connection = 'lucentdb';
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
+1
-1
@@ -6,7 +6,7 @@ use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration {
|
||||
|
||||
protected $connection = 'lucentDb';
|
||||
protected $connection = 'lucentdb';
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
+1
-1
@@ -6,7 +6,7 @@ use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration {
|
||||
|
||||
protected $connection = 'lucentDb';
|
||||
protected $connection = 'lucentdb';
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
+1
-1
@@ -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');
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user