PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
platform
/
plugins
/
audit-log
/
database
/
migrations
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; class CreateAuditHistory extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('audit_histories', function (Blueprint $table) { $table->id(); $table->integer('user_id')->unsigned()->references('id')->on('users')->index(); $table->string('module', 60)->index(); $table->text('request')->nullable(); $table->string('action', 120); $table->text('user_agent')->nullable(); $table->string('ip_address', 39)->nullable(); $table->integer('reference_user')->unsigned(); $table->integer('reference_id')->unsigned(); $table->string('reference_name', 255); $table->string('type', 20); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('audit_histories'); } }
[+]
..
[-] 2015_06_29_025744_create_audit_history.php
[edit]