dbfdg bigIncrements('id'); $table->unsignedBigInteger('lead_id'); $table->string('subject'); $table->string('call_type', 30); $table->string('duration', 20); $table->integer('user_id'); $table->text('description')->nullable(); $table->text('call_result')->nullable(); $table->foreign('lead_id')->references('id')->on('leads')->onDelete('cascade'); $table->timestamps(); } ); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('lead_calls'); } }