PATH:
home
/
lab2454c
/
tripvare.com
/
vendor
/
yadahan
/
laravel-authentication-log
/
database
/
migrations
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateAuthenticationLogTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('authentication_log', function (Blueprint $table) { $table->bigIncrements('id'); $table->morphs('authenticatable'); $table->string('ip_address', 45)->nullable(); $table->text('user_agent')->nullable(); $table->timestamp('login_at')->nullable(); $table->timestamp('logout_at')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('authentication_log'); } }
[+]
..
[-] 2017_09_01_000000_create_authentication_log_table.php
[edit]