<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateUserlogsTable extends Migration
{
public function up()
{
Schema::create('userlogs', function (Blueprint $table) {
$table->bigIncrements('id');
$table->integer('user')->nullable();
$table->string('ip')->nullable();
$table->string('type')->nullable();
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('userlogs');
}
}