first commit

This commit is contained in:
Kevin Adametz 2021-01-08 17:48:20 +01:00
commit 0baac018a2
1011 changed files with 145854 additions and 0 deletions

View file

@ -0,0 +1,51 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateLoggersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('loggers', function (Blueprint $table) {
$table->increments('id');
//from user
$table->unsignedInteger('user_id')->nullable();
//to model
$table->unsignedInteger('model_id')->index()->nullable();
$table->string('model')->index()->nullable();
$table->string('action')->index()->nullable();
$table->string('channel')->index()->nullable();
$table->text('message')->nullable();
$table->unsignedTinyInteger('level')->index()->default(0);
$table->timestamps();
$table->foreign('user_id')
->references('id')
->on('users')
->onDelete('cascade');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('loggers');
}
}