id(); $table->unsignedBigInteger('historial_id')->nullable(); $table->foreign('historial_id') ->references('id') ->on('historiales') ->onDelete('cascade') ->onUpdate('cascade'); $table->unsignedBigInteger('cuenta_id')->nullable(); $table->foreign('cuenta_id') ->references('id') ->on('cuentas') ->onDelete('cascade') ->onUpdate('cascade'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('logs'); } };