bigIncrements('id')->unsigned(); $table->bigInteger('user_id'); $table->string('path'); $table->string('method', 10); $table->string('ip'); $table->text('input'); $table->index('user_id'); $table->timestamps(); }); } } public function down() { Schema::dropIfExists('admin_operation_log'); } }