dbfdg bigIncrements('id'); $table->unsignedBigInteger('deal_id'); $table->string('name'); $table->date('date'); $table->time('time'); $table->string('priority'); $table->string('status'); $table->foreign('deal_id')->references('id')->on('deals')->onDelete('cascade'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('deal_tasks'); } }