id(); $table->bigInteger("action_id")->index(); $table->string("field", 100); $table->text("old")->nullable(); $table->text("new")->nullable(); $table->mediumText("diff")->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('histories'); } };