User Order step1
This commit is contained in:
parent
eb55b01b0d
commit
a5db985ae8
90 changed files with 6439 additions and 421 deletions
|
|
@ -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');
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue