added sender ID to the clients Tab in Show view plus bug fixes
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
|
||||
class CreateActivityLogTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create(config('activitylog.table_name'), function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->string('log_name')->nullable();
|
||||
$table->text('description');
|
||||
$table->integer('subject_id')->nullable();
|
||||
$table->string('subject_type')->nullable();
|
||||
$table->integer('causer_id')->nullable();
|
||||
$table->string('causer_type')->nullable();
|
||||
$table->text('properties')->nullable();
|
||||
$table->timestamps();
|
||||
|
||||
$table->index('log_name');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists(config('activitylog.table_name'));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user